Skip to content

Instantly share code, notes, and snippets.

@gillesdemey
Created March 25, 2020 21:48
Show Gist options
  • Save gillesdemey/aa0da9bd7d7cef6068c92e09a30a525a to your computer and use it in GitHub Desktop.
Save gillesdemey/aa0da9bd7d7cef6068c92e09a30a525a to your computer and use it in GitHub Desktop.
const a = [1, 2, 3]
const b = [1, 1, 3]
const c = [3, 2, 1]
function verticalSum (...args) {
return args.reduce((acc, a) => acc.map((n, i) => n + a[i]), new Array(args.length).fill(0))
}
const result = verticalSum(a, b, c)
console.log(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment