Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Counter-Strike solution in Clear category for Frequency Sorting by suic
from collections import Counter
def checkio(numbers):
c = Counter(numbers)
return sorted(numbers, key=lambda x: (-c[x], x))
March 1, 2018
Comments: