mirror of
https://github.com/SrIzan10/adventofcode.git
synced 2026-06-19 00:02:26 +00:00
10 lines
159 B
Python
10 lines
159 B
Python
input = open('input.txt', 'r').read().strip().splitlines()
|
|
|
|
def part1():
|
|
return
|
|
|
|
def part2():
|
|
return
|
|
|
|
print('Part1:', part1())
|
|
print('Part2:', part2()) |