How to sum the corners of a matrix in Node.js

1 Answer

0 votes
function sumMatrixCorners(matrix) {
  return matrix[0][0] + 
         matrix[0][matrix[0].length - 1] + 
         matrix[matrix.length - 1][0] + 
         matrix[matrix.length - 1][matrix[0].length - 1];
}
  
const matrix = [
  [1, 2, 3, 5],
  [4, 6, 7, 8],
  [9, 3, 2, 0]
];
  
console.log(sumMatrixCorners(matrix));
  
  
      
      
/*
run:
      
15
      
*/

 



answered May 21, 2024 by avibootz

Related questions

1 answer 167 views
1 answer 113 views
1 answer 124 views
1 answer 155 views
1 answer 126 views
126 views asked May 20, 2024 by avibootz
1 answer 95 views
95 views asked May 20, 2024 by avibootz
...