nix: bump flake inputs
This commit is contained in:
parent
67ef6227dc
commit
8618c81b2f
11 changed files with 28 additions and 32 deletions
|
|
@ -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)
|
||||
)
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue