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