Compare commits

..

35 commits

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