You are viewing a single comment's thread. Return to all comments →
def insertionSort2(n, arr): # Write your code here for i in range(1, n): key = arr[i] j = i - 1 while j >= 0 and key < arr[j]: arr[j+1] = arr[j] j -= 1 arr[j+1] = key print(" ".join(str(x) for x in arr))
Seems like cookies are disabled on this browser, please enable them to open this website
Insertion Sort - Part 2
You are viewing a single comment's thread. Return to all comments →