You are viewing a single comment's thread. Return to all comments →
In Python using collections library
from collections import Counter
def equalizeArray(arr):
return len(arr) - max(Counter(arr).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 →
In Python using collections library
from collections import Counter
def equalizeArray(arr):