nix: bump flake inputs
This commit is contained in:
parent
601b40e7d4
commit
94befa4d1b
11 changed files with 28 additions and 32 deletions
|
|
@ -11,7 +11,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)
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue