Skip to content

Instantly share code, notes, and snippets.

View navjotahuja92's full-sized avatar
🎖️

Navjot Ahuja navjotahuja92

🎖️
View GitHub Profile
@navjotahuja92
navjotahuja92 / disjointSet.js
Created March 13, 2018 18:36 — forked from peterkhayes/disjointSet.js
Javascript Disjoint Set
/*
Useful for HackerRank problems.
*/
function main (numNodes, edges) {
const parent = [];
const rank = [];
function makeSet (x) {
@navjotahuja92
navjotahuja92 / introrx.md
Created February 19, 2017 14:38 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing