打怪录专题

LC打怪录 912.排序数组

1.3 插入排序 | 菜鸟教程 def insertionSort(arr):for i in range(len(arr)):preIndex = i-1current = arr[i]while preIndex >= 0 and arr[preIndex] > current:arr[preIndex+1] = arr[preIndex]preIndex-=1arr[preIndex+1]