Skip to content

Instantly share code, notes, and snippets.

View garrowp's full-sized avatar

Peter Garrow garrowp

View GitHub Profile
@garrowp
garrowp / graph.js
Last active October 24, 2019 04:45
class Graph {
constructor() {
this.vertices = [];
this.adjacentList = new Map();
}
addVertex(v) {
this.vertices.push(v);
this.adjacentList.set(v, []);
}