Skip to content

Instantly share code, notes, and snippets.

@mmloveaa
Last active April 7, 2016 05:54
Show Gist options
  • Save mmloveaa/b2133cfc687092f97cf69c84fbb4e8ad to your computer and use it in GitHub Desktop.
Save mmloveaa/b2133cfc687092f97cf69c84fbb4e8ad to your computer and use it in GitHub Desktop.
Q26
function getProducts(arr){
var totalProd = arr.reduce(function(a,b){return a*b;});
return arr.map(function(val){
return totalProd/val;
});
}
getProducts([5, 1, 3, 2])
// return
// [6, 30, 10, 15]
// [1*3*2, 5*3*2, 5*1*2, 5*1*3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment