Skip to content

Instantly share code, notes, and snippets.

@thrasibule
Created March 30, 2017 17:50
Show Gist options
  • Save thrasibule/17406ace6379e9b4c8bcd3e07776db36 to your computer and use it in GitHub Desktop.
Save thrasibule/17406ace6379e9b4c8bcd3e07776db36 to your computer and use it in GitHub Desktop.
import sys
def parse(line):
return [c for c in line]
def solve():
pass
with open(sys.argv[1]) as fh:
N = int(next(fh))
i = 1
for line in fh:
print("Case #{}: ".format(i, solve(parse(line))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment