Skip to content

Instantly share code, notes, and snippets.

@jgomo3
Created February 6, 2020 13:05
Show Gist options
  • Save jgomo3/147fc41b0bda5844a2992ce1f3de70bb to your computer and use it in GitHub Desktop.
Save jgomo3/147fc41b0bda5844a2992ce1f3de70bb to your computer and use it in GitHub Desktop.
from collections import Counter
def even_word(word):
return sum(1 for w, n in Counter(word).items() if n%2 != 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment