You are viewing a single comment's thread. Return to all comments →
def maxMin(k, arr):
dif = [] arr.sort() n = k - 1 for i in range(len(arr) - k + 1): dif.append(arr[n + i] - arr[i]) return min(dif)
Seems like cookies are disabled on this browser, please enable them to open this website
Max Min
You are viewing a single comment's thread. Return to all comments →
def maxMin(k, arr):