GoalScope — below_zero (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<code>↵
def below_zero(operations: List[int]) -> bool:↵
"""Check if the balance goes below zero at any point."""↵
balance = 0↵
for op in operations:↵
balance += op↵
if balance < 0:↵
return True↵
return False↵
</code>