min([[1,2], [3, 4], [9, 0]], key=lambda x: x[1]) == [9, 0]
I put this in Python Console, and the result is False.
don't we make a function works exactly like a built-in one in this task?
Created at: 2017/11/26 13:48; Updated at: 2017/12/01 15:23