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

@ -61,11 +61,11 @@ def solve(input: List[str]) -> int:
for x in range(map.dimensions.x):
print(
"".join(
"v"
if Point(x, y) in map.south
else ">"
if Point(x, y) in map.east
else "."
(
"v"
if Point(x, y) in map.south
else ">" if Point(x, y) in map.east else "."
)
for y in range(map.dimensions.y)
)
)