Created
April 7, 2017 09:55
-
-
Save abhinavkorpal/18cf49bfeecfba40711154a43813beea to your computer and use it in GitHub Desktop.
Most Common
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, OrderedDict | |
| class OrderedCounter(Counter, OrderedDict): | |
| pass | |
| [print(*c) for c in OrderedCounter(sorted(input())).most_common(3)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment