Answers for "python sort a 2d array by custom function"

0

python sort a 2d array by custom function

>>> a = [
     [12, 18, 6, 3], 
     [ 4,  3, 1, 2], 
     [15,  8, 9, 6]
]
>>> a.sort(key=lambda x: x[1])
>>> a
[[4,  3,  1, 2], 
 [15, 8,  9, 6], 
 [12, 18, 6, 3]]
Posted by: Guest on October-02-2020

Python Answers by Framework

Browse Popular Code Answers by Language