Compare commits

..

29 commits

Author SHA1 Message Date
Bruno BELANYI b11765c45e 2022: d10: ex2: add solution 2022-12-10 10:29:02 +01:00
Bruno BELANYI 2a5f9dd3c7 2022: d10: ex2: add input 2022-12-10 10:28:55 +01:00
Bruno BELANYI 9b7ef1bc6d 2022: d10: ex1: add solution 2022-12-10 10:28:46 +01:00
Bruno BELANYI f26111e42e 2022: d10: ex1: add input 2022-12-10 10:28:40 +01:00
Bruno BELANYI 39917c0e4b 2022: d09: ex2: add solution 2022-12-09 10:41:04 +01:00
Bruno BELANYI 1086e92f80 2022: d09: ex2: add input 2022-12-09 10:40:58 +01:00
Bruno BELANYI 4652591b7c 2022: d09: ex1: add solution 2022-12-09 10:40:51 +01:00
Bruno BELANYI 3550a4a8b3 2022: d09: ex1: add input 2022-12-09 10:40:45 +01:00
Bruno BELANYI 053db619f8 2022: d08: ex2: add solution 2022-12-08 08:19:28 +01:00
Bruno BELANYI 9efee56ba0 2022: d08: ex2: add input 2022-12-08 08:19:23 +01:00
Bruno BELANYI ed07251fdc 2022: d08: ex1: add solution 2022-12-08 08:19:10 +01:00
Bruno BELANYI eff71c7619 2022: d08: ex1: add input 2022-12-08 08:19:05 +01:00
Bruno BELANYI e3a28c0c1e 2022: d07: ex2: add solution 2022-12-07 09:18:47 +01:00
Bruno BELANYI c86d0b803f 2022: d07: ex2: add input 2022-12-07 09:18:41 +01:00
Bruno BELANYI bc0c3ef7a9 2022: d07: ex1: add solution 2022-12-07 09:18:34 +01:00
Bruno BELANYI d000e559ce 2022: d07: ex1: add input 2022-12-07 09:18:05 +01:00
Bruno BELANYI 3f4edf917a 2022: d06: ex2: add solution 2022-12-06 07:49:13 +01:00
Bruno BELANYI 5e6fffac5e 2022: d06: ex2: add input 2022-12-06 07:49:08 +01:00
Bruno BELANYI d4821cceeb 2022: d06: ex1: add solution 2022-12-06 07:49:02 +01:00
Bruno BELANYI 3dc28e887c 2022: d06: ex1: add input 2022-12-06 07:48:56 +01:00
Bruno BELANYI fb66ce49a6 2022: d05: ex2: add solution 2022-12-05 08:26:15 +01:00
Bruno BELANYI 205212f429 2022: d05: ex2: add input 2022-12-05 08:26:09 +01:00
Bruno BELANYI e77b63a0aa 2022: d05: ex1: add solution 2022-12-05 08:26:01 +01:00
Bruno BELANYI 658426b449 2022: d05: ex1: add input 2022-12-05 08:25:51 +01:00
Bruno BELANYI e190b4dd3b 2022: d04: ex2: add solution 2022-12-04 06:31:58 +01:00
Bruno BELANYI 0d9076f8a1 2022: d04: ex2: add input 2022-12-04 06:31:49 +01:00
Bruno BELANYI acde34de85 2022: d04: ex1: add solution 2022-12-04 06:31:43 +01:00
Bruno BELANYI df29663c52 2022: d04: ex1: add input 2022-12-04 06:31:37 +01:00
Bruno BELANYI 789f2f89e6 2022: d03: ex2: add solution 2022-12-03 07:50:28 +01:00
5 changed files with 6 additions and 7 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env python
import sys
from collections.abc import Iterator
from typing import Iterator
Group = tuple[str, str, str]

View file

@ -3,8 +3,7 @@
import collections
import itertools
import sys
from collections.abc import Iterable
from typing import TypeVar
from typing import Iterable, TypeVar
T = TypeVar("T")

View file

@ -3,8 +3,7 @@
import collections
import itertools
import sys
from collections.abc import Iterable
from typing import TypeVar
from typing import Iterable, TypeVar
T = TypeVar("T")

View file

@ -2,7 +2,7 @@
import dataclasses
import sys
from collections.abc import Iterator
from typing import Iterator
@dataclasses.dataclass

View file

@ -1,8 +1,9 @@
#!/usr/bin/env python
import dataclasses
import itertools
import sys
from collections.abc import Iterator
from typing import Iterator
@dataclasses.dataclass