You are viewing a single comment's thread. Return to all comments →
Hard to beat python simplicity for this things..
from collections import Counter def equalizeArray(arr): return len(arr) - Counter(arr).most_common(1)[0][1]
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 →
Hard to beat python simplicity for this things..