#Jan. 24, 2019 C1.txt getting started Help:=proc(): print(` OurMin(L); SelS(L); `): end: #OurMin(L):inputs a list of numbers and outputs the smallest entry and location OurMin:=proc(L) local i ,n, rec,champ: n:=nops(L): rec:=L[1]: champ:=1: for i from 2 to n do if L[i]