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