Skip to content

Instantly share code, notes, and snippets.

@animatedlew
Forked from panda01/Unflatten
Last active December 27, 2015 15:29
Show Gist options
  • Save animatedlew/7348602 to your computer and use it in GitHub Desktop.
Save animatedlew/7348602 to your computer and use it in GitHub Desktop.
function unflatten(list, count) {
return _.map(_.range(Math.ceil(list.length/count)), function(mul) {
return list.slice(mul*count, mul*count+count);
});
}
console.log(unflatten(_.range(1, 14), 3));
// [[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12], [13]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment