GoalScope — find_equal_tuple (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<code>↵
def find_equal_tuple(Input):↵
"""Check if all tuples in the list have the same length."""↵
return all(len(t) == len(Input[0]) for t in Input)↵
</code>