Compare commits

..

29 commits

Author SHA1 Message Date
Bruno BELANYI f501a74b5c 2022: d10: ex2: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI 5731ff8e82 2022: d10: ex2: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI 426deae1ce 2022: d10: ex1: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI 63bbd74790 2022: d10: ex1: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI 20779b5e2e 2022: d09: ex2: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI 912e8e6edb 2022: d09: ex2: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI a505c9de49 2022: d09: ex1: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI 71280e082d 2022: d09: ex1: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI f6fbf6d6e6 2022: d08: ex2: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI 8b63d66750 2022: d08: ex2: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI 637b7e64c2 2022: d08: ex1: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI a45e00083c 2022: d08: ex1: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI a6f1d09f91 2022: d07: ex2: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI 02a0c87f74 2022: d07: ex2: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI 5270736a28 2022: d07: ex1: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI 761a37e8fe 2022: d07: ex1: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI 0c2712d7db 2022: d06: ex2: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI 20fcfe32b2 2022: d06: ex2: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI 6c4ead5e1b 2022: d06: ex1: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI 65cb34a16a 2022: d06: ex1: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI 5ad92f1585 2022: d05: ex2: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI fd66f79400 2022: d05: ex2: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI e2d1a5f74d 2022: d05: ex1: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI cea94a22fb 2022: d05: ex1: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI c2cfef5e30 2022: d04: ex2: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI 9b01dc5723 2022: d04: ex2: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI d43d8c0cf1 2022: d04: ex1: add solution 2022-12-10 10:32:40 +01:00
Bruno BELANYI 32ccf155df 2022: d04: ex1: add input 2022-12-10 10:32:40 +01:00
Bruno BELANYI 3030162e09 2022: d03: ex2: add solution 2022-12-10 10:32:40 +01:00
5 changed files with 7 additions and 6 deletions

View file

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

View file

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

View file

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

View file

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

View file

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