GoalScope — longest (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<code>↵
def longest(strings: List[str]) -> Optional[str]:↵
"""Return the longest string from a list of strings."""↵
if not strings:↵
return None↵
return max(strings, key=len)↵
</code>