Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 committed Dec 17, 2023
1 parent 1d9feee commit 4710aae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Final Round/programming_paths_part_2.py3
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def precompute():
dp = {(0, 0):None}
dp2 = {0:(0, 0)}
d = 0
lookup = {(0, 0, d)}
lookup = {(0, 0, d%2)}
q = [(0, 0)]
while q:
d += 1
Expand Down
2 changes: 1 addition & 1 deletion Final Round/programming_paths_part_2_2.py3
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def precompute():
dp = {(0, 0):None}
dp2 = {0:(0, 0)}
d = 0
lookup = {(0, 0, d)}
lookup = {(0, 0, d%2)}
q = [(0, 0)]
while q:
d += 1
Expand Down

0 comments on commit 4710aae

Please sign in to comment.