You are viewing a single comment's thread. Return to all comments →
For Python3 solution
result = 0 for i in range(len(arr)): result += arr[i][i] - arr[i][len(arr)-1-i] return abs(result)
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 →
For Python3 solution