GoalScope — valid_parentheses (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<code>↵
def valid_parentheses(s):↵
"""Check if the parentheses in the string are valid."""↵
stack = []↵
mapping = {")": "(", "}": "{", "]": "["}↵
for char in s:↵
if char in mapping.values():↵
stack.append(char)↵
elif char in mapping.keys():↵
if stack == [] or mapping[char] != stack.pop():↵
return False↵
else:↵
return False↵
return stack == []↵
</code>