Created
October 22, 2016 00:21
-
-
Save hunan-rostomyan/4bb4bb6f2fe040a55c4c2332729aa1cd to your computer and use it in GitHub Desktop.
Ah, Python...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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