So sortieren Sie das 2D -Array in Java mit Stream API

Arrays.sort(myArr, (a, b) -> a[0] - b[0]);
Fantastic Fish