Skip to content

Instantly share code, notes, and snippets.

@aleksey-rezvov
Created December 8, 2016 12:57
Show Gist options
  • Save aleksey-rezvov/ad1dfd166bc4e5522da16f22bed5bc7e to your computer and use it in GitHub Desktop.
Save aleksey-rezvov/ad1dfd166bc4e5522da16f22bed5bc7e to your computer and use it in GitHub Desktop.
var matrixExample = [
[ 1, 2, 3, 4 ],
[ 4, 5, 6, 5 ],
[ 7, 8, 9, 7 ],
[ 7, 8, 9, 7 ]
];
function sumUpDiagonals(matrix) {
// ...
}
console.log(sumUpDiagonals(matrixExample))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment