From 74e43afa728fd17364eb68c5e6eff70608810a12 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 1 Dec 2021 10:43:29 +0100 Subject: [PATCH] 2021: d01: ex1: add solution --- 2021/d01/ex1/ex1.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 2021/d01/ex1/ex1.py diff --git a/2021/d01/ex1/ex1.py b/2021/d01/ex1/ex1.py new file mode 100755 index 0000000..3853ce4 --- /dev/null +++ b/2021/d01/ex1/ex1.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python + +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()