util.py 117 B

123
  1. def get_input(p, fn=lambda a: a.strip()):
  2. with open(p) as f:
  3. return [fn(line) for line in f.readlines()]