Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Word Pattern by tokiojapan55
def check_command(pattern, command):
return int(''.join(['0' if c.isdigit() else '1' for c in command]),2)==pattern
April 20, 2020
Comments: