git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| function mapValues(obj, fn) { | |
| return Object.keys(obj).reduce((result, key) => { | |
| result[key] = fn(obj[key], key); | |
| return result; | |
| }, {}); | |
| } | |
| function pick(obj, fn) { | |
| return Object.keys(obj).reduce((result, key) => { | |
| if (fn(obj[key])) { |
| http://bigocheatsheet.com/ | |
| https://gist.github.com/TSiege/cbb0507082bb18ff7e4b | |
| https://algs4.cs.princeton.edu/cheatsheet/ | |
| https://thejavacheatsheet.wordpress.com/category/sorting-algorithms/ | |
| http://cooervo.github.io/Algorithms-DataStructures-BigONotation/ |
| from collections import deque | |
| file = [ | |
| 6, | |
| {"N": 4, "K": 1, "V": 3, | |
| "A": [ "LikeSign", "Arcade", "SweetStop", "SwagStore"]}, | |
| {"N": 4, "K": 4, "V": 100, | |
| "A": [ "FoxGazebo", "MPK20Roof", "WoodenSculpture", "Biryani"]}, | |
| { | |
| "name": "new", | |
| "version": "1.0.0", | |
| "description": "", | |
| "keywords": [], | |
| "main": "src/index.js", | |
| "dependencies": { | |
| "@fortawesome/fontawesome": "1.1.7", | |
| "@fortawesome/fontawesome-free-brands": "5.0.12", | |
| "@fortawesome/fontawesome-free-regular": "5.0.12", |