Compare commits

..

31 commits

Author SHA1 Message Date
Bruno BELANYI 5b084a755b 2024: d19: ex2: add solution 2024-12-19 00:11:14 -05:00
Bruno BELANYI a363dd9172 2024: d19: ex2: add input 2024-12-19 00:11:08 -05:00
Bruno BELANYI aff6966078 2024: d19: ex1: add solution 2024-12-19 00:11:03 -05:00
Bruno BELANYI 37470beec0 2024: d19: ex1: add input 2024-12-19 00:10:57 -05:00
Bruno BELANYI a83c7cb441 2024: d18: ex2: add solution 2024-12-18 00:25:04 -05:00
Bruno BELANYI b69cbd0e62 2024: d18: ex2: add input 2024-12-18 00:24:53 -05:00
Bruno BELANYI 6dc74c4dcb 2024: d18: ex1: add solution 2024-12-18 00:24:47 -05:00
Bruno BELANYI ed1cccab46 2024: d18: ex1: add input 2024-12-18 00:24:40 -05:00
Bruno BELANYI 5a6658764d 2024: d17: ex2: add solution 2024-12-17 13:11:08 -05:00
Bruno BELANYI c1c1429deb 2024: d17: ex2: add input 2024-12-17 13:10:57 -05:00
Bruno BELANYI 8c1cdd2b7d 2024: d17: ex1: add solution 2024-12-17 13:10:51 -05:00
Bruno BELANYI 5154037cf9 2024: d17: ex1: add input 2024-12-17 13:10:44 -05:00
Bruno BELANYI 1468ef5a9b 2024: d16: ex2: add solution 2024-12-16 14:54:20 -05:00
Bruno BELANYI 93bbb5bae6 2024: d16: ex2: add input 2024-12-16 14:54:15 -05:00
Bruno BELANYI 32a92bd813 2024: d16: ex1: add solution 2024-12-16 14:54:09 -05:00
Bruno BELANYI f2751ddee8 2024: d16: ex1: add input 2024-12-16 14:54:04 -05:00
Bruno BELANYI f761721daf 2024: d15: ex2: add solution 2024-12-15 11:01:06 -05:00
Bruno BELANYI bfdbdf6499 2024: d15: ex2: add input 2024-12-15 11:01:01 -05:00
Bruno BELANYI d0dd6a1bbb 2024: d15: ex1: add solution 2024-12-15 11:00:54 -05:00
Bruno BELANYI 7bd3033950 2024: d15: ex1: add input 2024-12-15 11:00:49 -05:00
Bruno BELANYI 135980fd92 2024: d14: ex2: add solution 2024-12-14 11:22:58 -05:00
Bruno BELANYI f6119c763e 2024: d14: ex2: add input 2024-12-14 11:22:54 -05:00
Bruno BELANYI dbff9dc49b 2024: d14: ex1: add solution 2024-12-14 11:22:46 -05:00
Bruno BELANYI bf7e3eb6dc 2024: d14: ex1: add input 2024-12-14 11:22:39 -05:00
Bruno BELANYI 8eb066cd31 2024: d13: ex2: add solution 2024-12-13 01:51:43 -05:00
Bruno BELANYI 086b0738f9 2024: d13: ex2: add input 2024-12-13 01:51:38 -05:00
Bruno BELANYI 8cbe50560c 2024: d13: ex1: add solution 2024-12-13 01:51:32 -05:00
Bruno BELANYI fc6314d77a 2024: d13: ex1: add input 2024-12-13 01:51:28 -05:00
Bruno BELANYI 1a77489993 2024: d12: ex2: add solution 2024-12-12 10:01:22 -05:00
Bruno BELANYI a90594264e 2024: d12: ex2: add input 2024-12-12 10:01:03 -05:00
Bruno BELANYI 176c75fe29 2024: d12: ex1: add solution 2024-12-12 10:00:57 -05:00
5 changed files with 10 additions and 5 deletions

View file

@ -1,7 +1,8 @@
#!/usr/bin/env python
import sys
from typing import Iterator, NamedTuple
from collections.abc import Iterator
from typing import NamedTuple
class Point(NamedTuple):

View file

@ -1,7 +1,8 @@
#!/usr/bin/env python
import sys
from typing import Iterator, NamedTuple
from collections.abc import Iterator
from typing import NamedTuple
class Point(NamedTuple):

View file

@ -3,7 +3,8 @@
import enum
import heapq
import sys
from typing import Iterator, NamedTuple
from collections.abc import Iterator
from typing import NamedTuple
class Point(NamedTuple):

View file

@ -4,7 +4,8 @@ import enum
import heapq
import sys
from collections import defaultdict
from typing import Iterator, NamedTuple
from collections.abc import Iterator
from typing import NamedTuple
class Point(NamedTuple):

View file

@ -2,7 +2,8 @@
import heapq
import sys
from typing import Iterator, NamedTuple
from collections.abc import Iterator
from typing import NamedTuple
class Point(NamedTuple):