You are viewing a single comment's thread. Return to all comments →
def minimumAbsoluteDifference(arr): # Write your code here s = sorted(arr) return min([abs(s[i] - s[i - 1]) for i in range(1, len(s))])
Seems like cookies are disabled on this browser, please enable them to open this website
Minimum Absolute Difference in an Array
You are viewing a single comment's thread. Return to all comments →