Skip to content

Instantly share code, notes, and snippets.

@chansuke
Last active August 29, 2015 14:05
Show Gist options
  • Save chansuke/065f054c44765fbd6f5c to your computer and use it in GitHub Desktop.
Save chansuke/065f054c44765fbd6f5c to your computer and use it in GitHub Desktop.
Check iO The Most Wanted Letter
import string
def checkio(text):
text = text.lower()
return max(string.ascii_lowercase, key=lambda ch: text.count(ch))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment