Compare commits

..

35 commits

Author SHA1 Message Date
Bruno BELANYI df66079060 2021: d13: ex2: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI 8794333d64 2021: d13: ex2: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI 4b19161d71 2021: d13: ex1: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI 6dbdba8a46 2021: d13: ex1: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI 64651f1be9 2021: d12: ex2: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI b2c5e732f5 2021: d12: ex2: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI 3feee209e3 2021: d12: ex1: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI 85fd510ec9 2021: d12: ex1: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI 6434bbca1b 2021: d11: ex2: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI c7f1e0c57c 2021: d11: ex2: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI 9c1b1bc4a5 2021: d11: ex1: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI 3fb206b0e5 2021: d11: ex1: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI cef3c2fa8d 2021: d10: ex2: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI 5e1b3b095c 2021: d10: ex2: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI 97ce6eb8b5 2021: d10: ex1: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI 00df99ac05 2021: d10: ex1: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI 531bbda3d5 2021: d09: ex2: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI fc8af0d5ce 2021: d09: ex2: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI 3b0f1c8882 2021: d09: ex1: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI 4a99cd11bd 2021: d09: ex1: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI f535c7c129 2021: d08: ex2: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI 2ab20607e1 2021: d08: ex2: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI ab86a2dce7 2021: d08: ex1: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI e05173e73b 2021: d08: ex1: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI 6d778ff545 2021: d07: ex2: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI c341ad6eee 2021: d07: ex2: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI b8d6bc9b4f 2021: d07: ex1: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI 7793f65af4 2021: d07: ex1: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI 4794a6269a 2021: d06: ex2: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI 7f9758eb0c 2021: d06: ex2: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI 10abc46e11 2021: d06: ex1: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI 330a8d64d0 2021: d06: ex1: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI d474708fc8 2021: d05: ex2: add solution 2021-12-13 17:52:37 +01:00
Bruno BELANYI 55e08af4b1 2021: d05: ex2: add input 2021-12-13 17:52:37 +01:00
Bruno BELANYI ce04fb589b 2021: d05: ex1: add solution 2021-12-13 17:52:37 +01:00
4 changed files with 2 additions and 4 deletions

View file

@ -3,7 +3,7 @@
import itertools import itertools
import sys import sys
from collections import Counter from collections import Counter
from typing import Iterable, List, Tuple, NamedTuple from typing import Iterable, List, NamedTuple, Tuple
class Point(NamedTuple): class Point(NamedTuple):

View file

@ -3,7 +3,7 @@
import itertools import itertools
import sys import sys
from collections import Counter from collections import Counter
from typing import Iterable, List, Tuple, NamedTuple from typing import Iterable, List, NamedTuple, Tuple
class Point(NamedTuple): class Point(NamedTuple):

View file

@ -6,7 +6,6 @@ from collections import Counter
from dataclasses import dataclass from dataclasses import dataclass
from typing import Iterator, List, TypeVar from typing import Iterator, List, TypeVar
T = TypeVar("T") T = TypeVar("T")

View file

@ -6,7 +6,6 @@ from collections import Counter
from dataclasses import dataclass from dataclasses import dataclass
from typing import Iterator, List, TypeVar from typing import Iterator, List, TypeVar
T = TypeVar("T") T = TypeVar("T")