(int a[], int b[])
| 4 | int targetArrival = times[targetFriend][0]; //[a,d] |
| 5 | Arrays.sort(times, new Comparator<int[]>(){ |
| 6 | public int compare(int a[], int b[]){ |
| 7 | return a[0] - b[0]; |
| 8 | } |
| 9 | }); |
| 10 | //[lt,chairNo] |
| 11 | PriorityQueue<int[]> occupied = new PriorityQueue<>(new Comparator<int[]>(){ |
nothing calls this directly
no outgoing calls
no test coverage detected