https://www.hackerrank.com/challenges/dijkstrashortreach/problem Dijkstra: Shortest Reach 2 | HackerRankLearn to use Dijkstra's shortest path algorithm !www.hackerrank.com public static List shortestReach(int n, List> edges, int s) { // Write your code here List> graph = new ArrayList(); for (int i = 0; i ()); } // Build adjacency list (undirected) for (List edge : edges) { ..