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