mirror of
https://github.com/SrIzan10/aoc2022.git
synced 2026-06-06 00:46:47 +00:00
10 lines
150 B
Python
10 lines
150 B
Python
input = open('input.txt', 'r').read().split('\n')
|
|
|
|
def part1():
|
|
return
|
|
|
|
def part2():
|
|
return
|
|
|
|
print('Part1:', part1())
|
|
print('Part2:', part2()) |