I am trying to find the maximum point for two different lists at the same index. Example:
l1 = [11,4,7,9]
l2 = [2,10,9,6]
The result from this example would be that l1 and l2 are both maximized at their third index (where l1 = 7 and l2 = 9).
Is there an existing function that can do this? If not, how would I approach this.