GoalScope — unique_digits (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<code>↵
def unique_digits(x):↵
"""Return a list of numbers with unique digits from the given list."""↵
return [num for num in x if len(set(str(num))) == len(str(num))]↵
</code>