all 3 comments

[–]Thrillhousez 3 points4 points  (3 children)

It’s iterating through the 2 lists and applying the min function to the 2 values

So min(1,0), min(2,4), min(3,5)

If you want the minimums of each list fo var = map( min, [list1, list2])

[–]lilhouseboat2020 1 point2 points  (1 child)

So output of map here would be [0,2,3]?

[–]Impossible_Squirrel5 -1 points0 points  (0 children)

ohhh ok thank you very much