GoalScope — insertion_sort (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
<code>↵ def insertion_sort(arr):↵ """Sorts an array using insertion sort."""↵ for i in range(1, len(arr)):↵ key = arr[i]↵ j = i - 1 while j >= 0 and key < arr[j]:↵ arr[j + 1] = arr[j]↵ j -= 1 arr[j + 1] = key</code>