I have the following list:
[[733.16584917887963, 123620000.0, 32111000.0, 301.0],
[732.27472276611104, 123620001.0, 32111000.0, 302.3],
[731.39029416733558, 123620002.0, 32111000.0, 303.3],
[730.49893696170341, 123620003.0, 32111000.0, 303.9],
[729.61188100398681, 123620004.0, 32111000.0, 304.2]]
I want to have the array of this list that has the minimum in the first element of this array.
The minimum value is:
729.61188100398681
And I want to have as output:
[729.61188100398681, 123620004.0, 32111000.0, 304.2]