Compare commits

..

35 commits

Author SHA1 Message Date
Bruno BELANYI a2c2517a7f 2021: d13: ex2: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI e62325a60a 2021: d13: ex2: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI 3967b92757 2021: d13: ex1: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI 98841cf3db 2021: d13: ex1: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI b40a56679b 2021: d12: ex2: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI 2f699b358e 2021: d12: ex2: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI 4009264f57 2021: d12: ex1: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI ec1caac856 2021: d12: ex1: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI bbea9b4ff7 2021: d11: ex2: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI 273ba69b90 2021: d11: ex2: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI 55ba53cf2c 2021: d11: ex1: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI 68a8f85b2f 2021: d11: ex1: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI bb1a65771c 2021: d10: ex2: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI 88a363a860 2021: d10: ex2: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI bd6b7d3a41 2021: d10: ex1: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI 73caa65bac 2021: d10: ex1: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI 080df14cb3 2021: d09: ex2: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI ee3e84ed94 2021: d09: ex2: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI fd72f17d19 2021: d09: ex1: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI 72345b56b0 2021: d09: ex1: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI d27bcfa2cd 2021: d08: ex2: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI 7662776bcb 2021: d08: ex2: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI 94185c4f8f 2021: d08: ex1: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI 6d10eceaf9 2021: d08: ex1: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI 1ff2d43e55 2021: d07: ex2: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI 6200f68a3c 2021: d07: ex2: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI 167b7e09cb 2021: d07: ex1: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI ddd01a3c61 2021: d07: ex1: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI b43044a693 2021: d06: ex2: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI 74673e32aa 2021: d06: ex2: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI 242b3c20fe 2021: d06: ex1: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI 4232c62096 2021: d06: ex1: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI 21a1039030 2021: d05: ex2: add solution 2021-12-13 14:33:15 +01:00
Bruno BELANYI ac779bb621 2021: d05: ex2: add input 2021-12-13 14:33:15 +01:00
Bruno BELANYI 15e7cf5eff 2021: d05: ex1: add solution 2021-12-13 14:33:15 +01:00
4 changed files with 4 additions and 2 deletions

View file

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

View file

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

View file

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

View file

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