first commit
This commit is contained in:
9
01/solve01.py
Executable file
9
01/solve01.py
Executable file
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
start = 0
|
||||
|
||||
with open('input.txt', 'r') as f:
|
||||
for line in f:
|
||||
start += int(line)
|
||||
|
||||
print(start)
|
||||
Reference in New Issue
Block a user