Compare commits

..

31 commits

Author SHA1 Message Date
Bruno BELANYI 2b91c64993 2024: d19: ex2: add solution 2024-12-19 00:11:14 -05:00
Bruno BELANYI 493c532cbe 2024: d19: ex2: add input 2024-12-19 00:11:08 -05:00
Bruno BELANYI b98a41899b 2024: d19: ex1: add solution 2024-12-19 00:11:03 -05:00
Bruno BELANYI aff9ae0f0e 2024: d19: ex1: add input 2024-12-19 00:10:57 -05:00
Bruno BELANYI 64189dd1db 2024: d18: ex2: add solution 2024-12-18 00:25:04 -05:00
Bruno BELANYI 914b343145 2024: d18: ex2: add input 2024-12-18 00:24:53 -05:00
Bruno BELANYI 30b93baff1 2024: d18: ex1: add solution 2024-12-18 00:24:47 -05:00
Bruno BELANYI d7d8f12774 2024: d18: ex1: add input 2024-12-18 00:24:40 -05:00
Bruno BELANYI 4bad7e1de4 2024: d17: ex2: add solution 2024-12-17 13:11:08 -05:00
Bruno BELANYI e611bfee3b 2024: d17: ex2: add input 2024-12-17 13:10:57 -05:00
Bruno BELANYI 6f35df7da2 2024: d17: ex1: add solution 2024-12-17 13:10:51 -05:00
Bruno BELANYI 64e89ed5a4 2024: d17: ex1: add input 2024-12-17 13:10:44 -05:00
Bruno BELANYI 6eb1814105 2024: d16: ex2: add solution 2024-12-16 14:54:20 -05:00
Bruno BELANYI 0e08b6ed7f 2024: d16: ex2: add input 2024-12-16 14:54:15 -05:00
Bruno BELANYI a132dc10a6 2024: d16: ex1: add solution 2024-12-16 14:54:09 -05:00
Bruno BELANYI bb211fe01c 2024: d16: ex1: add input 2024-12-16 14:54:04 -05:00
Bruno BELANYI 20f79adce5 2024: d15: ex2: add solution 2024-12-15 11:07:38 -05:00
Bruno BELANYI 7198c00145 2024: d15: ex2: add input 2024-12-15 11:01:01 -05:00
Bruno BELANYI 6a55d34633 2024: d15: ex1: add solution 2024-12-15 11:00:54 -05:00
Bruno BELANYI 926d912e4a 2024: d15: ex1: add input 2024-12-15 11:00:49 -05:00
Bruno BELANYI 8ce97fe1ff 2024: d14: ex2: add solution 2024-12-14 11:22:58 -05:00
Bruno BELANYI 6ce4f486b7 2024: d14: ex2: add input 2024-12-14 11:22:54 -05:00
Bruno BELANYI 6b3a2560fc 2024: d14: ex1: add solution 2024-12-14 11:22:46 -05:00
Bruno BELANYI 310e4e41bc 2024: d14: ex1: add input 2024-12-14 11:22:39 -05:00
Bruno BELANYI 8c054af2e7 2024: d13: ex2: add solution 2024-12-13 01:51:43 -05:00
Bruno BELANYI 35a5857ff2 2024: d13: ex2: add input 2024-12-13 01:51:38 -05:00
Bruno BELANYI 4b7b83758b 2024: d13: ex1: add solution 2024-12-13 01:51:32 -05:00
Bruno BELANYI c8c4cd8fcf 2024: d13: ex1: add input 2024-12-13 01:51:28 -05:00
Bruno BELANYI d5622de4ae 2024: d12: ex2: add solution 2024-12-12 10:06:13 -05:00
Bruno BELANYI 75d49df181 2024: d12: ex2: add input 2024-12-12 10:01:03 -05:00
Bruno BELANYI e89aaca8ee 2024: d12: ex1: add solution 2024-12-12 10:00:57 -05:00
5 changed files with 5 additions and 10 deletions

View file

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

View file

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

View file

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

View file

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

View file

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