GoalScope — count_upper (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
<code>↵ def count_upper(s):↵ """Count uppercase vowels in even indices."""↵ return sum(1 for i in range(0, len(s), 2) if s[i] in 'AEIOU')↵ </code>