mirror of
https://github.com/peter-tanner/advent-of-code-2020.git
synced 2024-11-30 19:00:17 +08:00
9 lines
130 B
Python
9 lines
130 B
Python
|
|
||
|
import itertools
|
||
|
from copy import deepcopy
|
||
|
|
||
|
ic = [ list(x) for x in open('input').read().splitlines() ]
|
||
|
|
||
|
[print(x) for x in ic]
|
||
|
|