GoalScope — kth_largest_element (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
<code>↵ def kth_largest_element(nums, k):↵ """Find the kth largest element in an unsorted list."""↵ return sorted(nums)[-k]↵ </code>