Compare commits

..

3 commits

Author SHA1 Message Date
Bruno BELANYI 789f2f89e6 2022: d03: ex2: add solution 2022-12-03 07:50:28 +01:00
Bruno BELANYI 035b00e5cf 2022: d03: ex2: add input 2022-12-03 07:50:28 +01:00
Bruno BELANYI 96b6c799e7 2022: d03: ex1: add solution 2022-12-03 07:50:28 +01:00

View file

@ -14,7 +14,7 @@ def solve(input: list[str]) -> int:
def main() -> None: def main() -> None:
input = sys.stdin.readlines() input = sys.stdin.read().splitlines()
print(solve(input)) print(solve(input))