python:实现insertion sort插入排序
def insertion_sort(nums):
# Start on the second element as we assume the first element is sorted
for i in range(1, len(nums))
def insertion_sort(nums):
# Start on the second element as we assume the first element is sorted
for i in range(1, len(nums))