Takes in a list of list of doubles (List<List<Double>>) and returns a list, containing the maximum value from all of the lists at the given index. The lists should all have the same length.

Inputs

Number Name Object Type Description Optional
1 Lists List<List<Double>> List of objects. No

Outputs

Number Name Object Type Description
1 Max List<Double> A list that contains the maximum value at each index across all lists.

Max of List Indeces.PNG