Skip to content

Commit

Permalink
Update dmoj-spirale.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
freakin23 authored Nov 4, 2024
1 parent bb2c4de commit 944f0b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion solutions/bronze/dmoj-spirale.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ uy = [1, 0, -1, 0]
dx = [0, -1, 0, 1]
dy = [-1, 0, 1, 0]
mat = [[(float("inf"))] * 50 for _ in range(50)]
MAX_N = 50
mat = [[(float("inf"))] * MAX_N for _ in range(MAX_N)]
curr = 0
cnt = 0
Expand Down

0 comments on commit 944f0b9

Please sign in to comment.