From 852563a2eccd450426c29b5951bbb8288a22c049 Mon Sep 17 00:00:00 2001 From: itsvinayak Date: Mon, 4 May 2020 10:48:45 +0530 Subject: [PATCH] Data Structures/Graph --- Data Structures/Graph/Graph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data Structures/Graph/Graph.js b/Data Structures/Graph/Graph.js index 5af996c0e..ef1a952a8 100644 --- a/Data Structures/Graph/Graph.js +++ b/Data Structures/Graph/Graph.js @@ -1,4 +1,3 @@ - class Graph { constructor () { this.adjacencyMap = {} @@ -42,3 +41,4 @@ const example = () => { g.addEdge(1, 3) g.printGraph() } +example()