save progress

This commit is contained in:
Lukas Werner
2022-06-05 22:01:42 -07:00
parent 5da06d3330
commit 6446c86686
14 changed files with 13137 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
threes = []
fives = []
for i in range(1000):
if i % 3 == 0:
threes.append(i)
elif i % 5 == 0:
fives.append(i)
print(sum(threes) + sum(fives))