Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-liner solution in Creative category for Word Pattern by David_Jones
def check_command(pattern, command):
return int(''.join('01'[ch.isalpha()] for ch in command), 2) == pattern
June 10, 2019
Comments: