You are viewing a single comment's thread. Return to all comments →
def maxMin(k, arr): # Write your code here n = len(arr) arr.sort() res=[] for i in range(n-k+1): uf=arr[i+k-1] - arr[i] print(uf) res.append(uf) return min(res)
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 →