GoalScope — re_arrange_array (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<code>↵
def re_arrange_array(arr, n):↵
"""Rearranges the first n elements of arr to have negatives before positives while preserving order."""↵
negatives = [x for x in arr[:n] if x < 0]↵
positives = [x for x in arr[:n] if x >= 0]↵
return negatives + positives + arr[n:]↵
</code>