summaryrefslogtreecommitdiffstats
path: root/solutions/py/01-1.py
diff options
context:
space:
mode:
Diffstat (limited to 'solutions/py/01-1.py')
-rw-r--r--solutions/py/01-1.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/solutions/py/01-1.py b/solutions/py/01-1.py
deleted file mode 100644
index 598caf4..0000000
--- a/solutions/py/01-1.py
+++ /dev/null
@@ -1,11 +0,0 @@
-import math
-import sys
-
-s = 0
-for line in sys.stdin:
- mass = int(line)
- if mass == 0:
- break
- fuel = math.floor(mass / 3) - 2
- s += fuel
-print(s)