fix divide_and_conquer-folder

This commit is contained in:
algobytewise
2021-03-23 12:29:27 +05:30
parent 9547066cb9
commit d90f331d19
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
from typing import List
from typing import List, Tuple
def max_difference(a: List[int]) -> (int, int):
def max_difference(a: List[int]) -> Tuple[int, int]:
"""
We are given an array A[1..n] of integers, n >= 1. We want to
find a pair of indices (i, j) such that