(Integer a, Integer b)
| 10 | //merge sort, quick sort .... |
| 11 | Arrays.sort(index, new Comparator<Integer>(){ |
| 12 | public int compare(Integer a, Integer b){ |
| 13 | return heights[b] - heights[a]; |
| 14 | } |
| 15 | }); |
| 16 | String res[] = new String[n]; |
| 17 | int i=0; |
nothing calls this directly
no outgoing calls
no test coverage detected