nix: bump flake inputs

This commit is contained in:
Bruno BELANYI 2024-11-23 18:42:21 +00:00
parent 601b40e7d4
commit 94befa4d1b
11 changed files with 28 additions and 32 deletions

View file

@ -60,11 +60,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)
)
)