2021: d01: ex1: add solution
This commit is contained in:
parent
2f661fa8a8
commit
b1bec40137
18
2021/d01/ex1/ex1.py
Executable file
18
2021/d01/ex1/ex1.py
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import itertools
|
||||
import sys
|
||||
from typing import List
|
||||
|
||||
|
||||
def solve(input: List[int]) -> int:
|
||||
return sum(prev < cur for (prev, cur) in zip(input, input[1:]))
|
||||
|
||||
|
||||
def main() -> None:
|
||||
input = [int(line) for line in sys.stdin.readlines()]
|
||||
print(solve(input))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
Loading…
Reference in a new issue