sorting a two dimensional array in java based on first character code example
Example: 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];
});