Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Word Pattern by Cjkjvfnby
from string import ascii_letters
def check_command(pattern, command):
return pattern == int(''.join([str(int(x in ascii_letters)) for x in command]), 2)
May 16, 2014
Comments: