Answers for "sorting 2d array java"

6

arrays sort 2d array java

Arrays.sort(myArr,(double[] a,double[] b)->{
                //here multiple lines of code can be placed
                return a[0]-b[0]; 
            });
Posted by: Guest on July-08-2020
0

sort 2d array by column java

Arrays.sort(contests, (a, b) -> Integer.compare(b[0],a[0])); //decreasing order
    
Arrays.sort(contests, (a, b) -> Integer.compare(a[0],b[0]); //increasing order
Posted by: Guest on May-05-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language