Files
advent_of_code/2022/day_22/part 1 solution.py
T
Jake Pullen 803de69aaa updated the organiser to be flexible in years
added 2022 folders
to start going back and doing previous years
2023-12-01 09:26:45 +00:00

7 lines
114 B
Python

import os
with open(r'advent_of_code\2022\day_22\input.txt', 'r') as file:
input = file.read()
print(input)