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:number[][]):number{// Write your code hereletprimarySum:number=0;letsecoundarySum:number=0;for(leti=0;i<arr.length;i++){letlastIndex:number=arr[i].length-1;primarySum+=arr[i][i];secoundarySum+=arr[i][lastIndex-i];}returnMath.abs(primarySum-secoundarySum);}
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 →
O(n) typescript solution