Skip to content

Instantly share code, notes, and snippets.

@hunan-rostomyan
Created October 22, 2016 00:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hunan-rostomyan/4bb4bb6f2fe040a55c4c2332729aa1cd to your computer and use it in GitHub Desktop.
Save hunan-rostomyan/4bb4bb6f2fe040a55c4c2332729aa1cd to your computer and use it in GitHub Desktop.
Ah, Python...
from collections import Counter
def sort(lst):
return [i for i, n in Counter(lst).items() for _ in range(n)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment