You are viewing a single comment's thread. Return to all comments →
def equalizeArray(arr): d=dict(Counter(arr)) return len(arr) - max(d.values())
Seems like cookies are disabled on this browser, please enable them to open this website
Equalize the Array
You are viewing a single comment's thread. Return to all comments →