In Insertion Sort , For a given set of N numbers, how many times the loop will run for comparing and interchanging the numbers code example

Example 1: Create a program that finds the minimum value in these numbers

Create a program that finds the minimum value in these numbers:

Example 2: write a function that takes in 2 arrays , merges them together an then return the new array sorted

// const twoArraysSorted = (arr) => {
//     let copy = [...];
//     copy.sort((a,b) => a-b).map(el=> el*2)
//     return arr
// }

Example 3: # get the largest number in a list and print its indexes

numbers = 1,3,11,42,12,4001
highestnumber = -999
for i in numbers:
  if i > highestnumber:
    highestnumber = i
print(numbers.index(highestnumber))