Skip to content

Instantly share code, notes, and snippets.

View eragon512's full-sized avatar

Anirud Samala eragon512

View GitHub Profile
const [n,m] = [5, 6];
const range = require('lodash/range');
const min = Math.min;
const max = Math.max;
function gcd(a,b) {
const [x, y] = [max(a, b), min(a,b)];
if(y <= 1) return 1;