I got a list of lists like the one below
l = [
[1, ....],
[2, ....],
[3, ....],
]
And I want as a result the list with the bigger number as the first element.
So the result of the above list should be:
[3, ....],
If we get multiple times the highest number, just get one of them in random
Any ideas on how to achieve that?
Thanks a ton!