Your instructor will guide you through these questions.
Find the loop invariant of:
Before creating the formal loop invariants, think about what the functions do. How might you use that as you construct the invariants?
# a_list is some list with at least one element
max = float('-inf')
for a in a_list:
max = a > max ? a : max
for i in range(1, len(array)):
temp = array[i]
position = i
while position > 0 and array[position-1] > temp:
array[position] = array[position-1]
position-=1
array[position]=temp
for passes in range(len(array)-1, 0, -1):
for i in range(passes):
if array[i]>array[i+1]:
array[i],array[i+1] = array[i+1],array[i]
True or False:
Let A = {a, b, c, d} What is P(A)?
A = {{1, 2, 3},{1, 2},∅,{1}}