This commit is contained in:
2021-12-01 20:14:10 +01:00
parent a11a29c0a5
commit 613b73a946
3 changed files with 2035 additions and 0 deletions
+2000
View File
File diff suppressed because it is too large Load Diff
+25
View File
@@ -0,0 +1,25 @@
import sys
depths = []
for line in sys.stdin:
depths.append(int(line))
total = 0
for i in range(1, len(depths)):
if depths[i - 1] < depths[i]:
total += 1
print("a:", total)
prev = 1000000
total = 0
for i in range(len(depths) - 2):
new = sum(depths[i : i + 3])
if new > prev:
total += 1
prev = new
print("b:", total)
+10
View File
@@ -0,0 +1,10 @@
199
200
208
210
200
207
240
269
260
263