(long a[], long b[])
| 7 | dist[S] = 0; |
| 8 | PriorityQueue<long[]> pq = new PriorityQueue<>(new Comparator<long[]>(){ |
| 9 | public int compare(long a[], long b[]){ |
| 10 | if(a[1]<=b[1]){ |
| 11 | return -1; |
| 12 | } |
| 13 | return 1; |
| 14 | } |
| 15 | }); |
| 16 | pq.offer(new long[] {S,0}); |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected