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