MCPcopy Create free account
hub / github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice / Edge

Method Edge

Leetcode/Java/DijsktraAlgo.java:13–17  ·  view source on GitHub ↗
(int src, int nbr, int wt)

Source from the content-addressed store, hash-verified

11 int wt;
12
13 Edge(int src, int nbr, int wt) {
14 this.src = src;
15 this.nbr = nbr;
16 this.wt = wt;
17 }
18 }
19
20 public static class Pair implements Comparable<Pair>{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected