You are viewing a single comment's thread. Return to all comments →
python 3
def maxMin(k, arr): arr.sort() return min([arr[i+k-1]-arr[i] for i in range(len(arr) - k +1)])
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 →
python 3