Skip to content

Instantly share code, notes, and snippets.

@wilson428
wilson428 / README.md
Last active April 13, 2017 16:56
Census Commuting Zones

This is a map of the USDA commuting zones, which are collections of counties last modified in 2000.

@wilson428
wilson428 / number_sequences.js
Created June 13, 2018 20:46
Generate every sequence of K integers adding to N in any order, allowing for repeats
function generateSequences(n, k) {
var sequences = [];
function getSequences(n, k, sequence) {
// calculate the highest possible value of a number, such that it leaves at least enough left over to fill the rest with 1s
var upper = n - k + 1;
for (var c = 1; c <= upper; c += 1) {
var sub_sequence = sequence.slice(0);
sub_sequence.push(c);