Skip to content

Commit d012e98

Browse files
committed
D. J.:
- Fixed a type hinting issue in leetcode problem 55 Jump Game
1 parent f06be30 commit d012e98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_55_jump_game.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
([3, 2, 1, 0, 4], False),
1313
],
1414
)
15-
def test_func(nums: List[int], expected: List[int]):
15+
def test_func(nums: List[int], expected: bool):
1616
can_jump = Solution().canJump(nums)
1717
assert can_jump == expected

0 commit comments

Comments
 (0)