GoalScope — reverse_words (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<
code
>↵
def
reverse
_words
(s
):↵
"""
Re
vers
es
the
order
of
words
in
a
given
sentence
."""↵
return
'
'.
join
(re
versed
(s
.split
()))↵
</
code
>