Insertion Sort - Part 2

  • + 0 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))