GoalScope — is_anagram (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
<code>↵ def is_anagram(s, t):↵ """Check if two strings are anagrams."""↵ return sorted(s) == sorted(t)↵ </code>