[13.2] Write, in order, the elements checked to find 6 in the following list for both linear and binary search: L = [1,5,6,10,11,12].
Start at the beginning of the list. Compare the first value in the list with the next one up. If the first value is bigger, swap the positions of the two values. Move to the second value in the list.