Skip to content

Commit 08e0b23

Browse files
committed
lets get this started!
0 parents  commit 08e0b23

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

day01/day01_part1.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env python3
2+
from typing import List, Tuple
3+
4+
def calc_2020(inlist: List[int]) -> Tuple[int, int]:
5+
return (0,0)
6+
7+
8+
9+
10+
if __name__ == "__main__":
11+
12+
with open("input", 'r') as infile:
13+
inlist = [line.strip() for line in infile]
14+
print(calc_2020(inlist))

0 commit comments

Comments
 (0)