mirror of
https://github.com/Xevion/advent-of-code.git
synced 2025-12-06 15:14:21 -06:00
5 lines
120 B
Python
5 lines
120 B
Python
import os
|
|
import sys
|
|
|
|
PATH = os.path.join(sys.path[0], '..', 'input')
|
|
DATA = list(map(int, open(PATH, 'r').readlines())) |