Answers for "sort a given 2d array of shape (4, 5) by 2nd column (i.e. column at index 1) in ascending order"

7

sort by index 2d array python

a = [[9, 9, 2], [9, 9, 3], [9, 9, 8], [9, 9, 4], [9, 9, 1], [9, 9, 5]]

b = sorted(a, key=lambda a:a[2])

#b contains the following arrays, sorted by their second index:
[[9, 9, 1], [9, 9, 2], [9, 9, 3], [9, 9, 4], [9, 9, 5], [9, 9, 8]]
Posted by: Guest on June-16-2020
0

sort 2d array based on one column java

Arrays.sort(array, Comparator.comparingDouble(o -> o[0]));
Posted by: Guest on December-03-2020

Code answers related to "sort a given 2d array of shape (4, 5) by 2nd column (i.e. column at index 1) in ascending order"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language