GoalScope — is_sorted (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
<code>↵ def is_sorted(lst):↵ """Check if the list is sorted."""↵ return all(lst[i] <= lst[i + 1] for i in range(len(lst) - 1))↵ </code>