GoalScope — common (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<code>↵
def common(l1: list, l2: list):↵
"""Return sorted unique common elements for two lists."""↵
return sorted(set(l1).intersection(set(l2)))↵
</code>