(Integer x, Integer y)
| 8 | } |
| 9 | Collections.sort(indexArr, new Comparator<Integer>(){ |
| 10 | public int compare(Integer x, Integer y){ |
| 11 | return arr[x] - arr[y]; //cust comp, inc sort |
| 12 | } |
| 13 | }); |
| 14 | int rank=0; |
| 15 | int prev=Integer.MAX_VALUE; |
nothing calls this directly
no outgoing calls
no test coverage detected