nix: bump flake inputs

This commit is contained in:
Bruno BELANYI 2024-11-23 18:42:21 +00:00
parent 67ef6227dc
commit 8618c81b2f
11 changed files with 28 additions and 32 deletions

View file

@ -12,7 +12,7 @@ def solve(input: List[str]) -> int:
def parse() -> Map:
res: Map = defaultdict(set)
for (start, to) in map(lambda s: s.split("-"), input):
for start, to in map(lambda s: s.split("-"), input):
res[start].add(to)
res[to].add(start)