mirror of
https://github.com/SrIzan10/adventofcode.git
synced 2026-06-06 00:46:56 +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()) |