mirror of
https://github.com/thib8956/advent-of-code.git
synced 2025-08-23 16:01:59 +00:00
15 lines
199 B
Python
15 lines
199 B
Python
import part1
|
|
import part2
|
|
|
|
|
|
def main(lines):
|
|
part1.main(lines)
|
|
part2.main(lines)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import fileinput
|
|
lines = [x for x in fileinput.input()]
|
|
main(lines)
|
|
|