Skip to content

Instantly share code, notes, and snippets.

@dogac00
Created March 12, 2018 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dogac00/d241ac50787c443e71f8ffa1fa92600f to your computer and use it in GitHub Desktop.
Save dogac00/d241ac50787c443e71f8ffa1fa92600f to your computer and use it in GitHub Desktop.
Scramblies @codewars
from collections import Counter
def scramble(s1, s2):
letters = Counter(s1)
word = Counter(s2)
diff = word - letters
return len(diff) == 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment