Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Data Structures/Graph/Graph.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

class Graph {
constructor () {
this.adjacencyMap = {}
Expand Down Expand Up @@ -42,3 +41,4 @@ const example = () => {
g.addEdge(1, 3)
g.printGraph()
}
example()