Skip to content

Commit 63298d4

Browse files
committed
Fix May 08 Test
1 parent 4f511d9 commit 63298d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

2025-05-May-LeetCoding-Challenge/Find Minimum Time to Reach Last Room II.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ def main():
2727
[4, 4]]
2828
assert Solution().minTimeToReach(moveTime) == 7
2929

30-
moveTime = [[0, 0, 0],
31-
[0, 0, 0]]
30+
moveTime = [[0, 0, 0, 0],
31+
[0, 0, 0, 0]]
3232
assert Solution().minTimeToReach(moveTime) == 6
3333

3434

0 commit comments

Comments
 (0)