We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
functiondiagonalDifference(arr){// Write your code hereletleftToRight=0letrightToLeft=0for(leti=0;i<arr.length;i++){leftToRight+=arr[i][i]rightToLeft+=arr[i][arr.length-1-i]}returnMath.abs(leftToRight-rightToLeft)}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Diagonal Difference
You are viewing a single comment's thread. Return to all comments →
Solution in js