How to calculate the the minimum value in a vector(array) of vectors

Hi @robo360! Is this what you’re after:

julia> minimum(minimum.([[1,2], [4,5]]))
1

?

4 Likes