MCPcopy Create free account
hub / github.com/Rishabh062/Hacktoberfest2021 / main

Method main

Java/graphs/MyGraph.java:50–60  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

48 }
49
50 public static void main(String[] args) {
51 MyGraph graph=new MyGraph(new String[]{"A","B","C","D","E"});
52 System.out.println(graph);
53 graph.add("A","B");
54 graph.add("A","C");
55 graph.add("B","C");
56 graph.add("B","D");
57 graph.add("C","D");
58 graph.add("D","E");
59 System.out.println(graph);
60 }
61
62}

Callers

nothing calls this directly

Calls 1

addMethod · 0.95

Tested by

no test coverage detected