diff options
| author | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-04 07:09:10 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-04 07:09:10 +0100 |
| commit | a8df3112a2378aa62ea920f3d202204fc019ad19 (patch) | |
| tree | de5798dec1af3c277f6585f4b8cf5adf1bc46982 /solutions/py/01-1.py | |
| parent | 831755fdc6d430bd8781da1897270cf2934bc858 (diff) | |
| download | aoc-a8df3112a2378aa62ea920f3d202204fc019ad19.tar.gz | |
Cleanup
Diffstat (limited to 'solutions/py/01-1.py')
| -rw-r--r-- | solutions/py/01-1.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/solutions/py/01-1.py b/solutions/py/01-1.py index fa43b34..598caf4 100644 --- a/solutions/py/01-1.py +++ b/solutions/py/01-1.py @@ -8,6 +8,4 @@ for line in sys.stdin: break fuel = math.floor(mass / 3) - 2 s += fuel - print("adding", fuel) - print("at", s) -print("sum", s) +print(s) |
