GoalScope — jump_game (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<code>↵
def jump_game(nums):↵
"""Determine if you can reach the last index given jump lengths."""↵
max_reach = 0↵
for i in range(len(nums)):↵
if i > max_reach:↵
return False↵
max_reach = max(max_reach, i + nums[i])↵
return True↵
</code>