Skip to content

Instantly share code, notes, and snippets.

@abhinavkorpal
Created April 7, 2017 09:55
Show Gist options
  • Save abhinavkorpal/18cf49bfeecfba40711154a43813beea to your computer and use it in GitHub Desktop.
Save abhinavkorpal/18cf49bfeecfba40711154a43813beea to your computer and use it in GitHub Desktop.
Most Common
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