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.
n=len(arr)
left_diagonal=[arr[i][i] for i in range(n)]
right_diagonal=[arr[i][n-1-i] for i in range(n)]
sum_left=sum(left_diagonal)
sum_right=sum(right_diagonal)
diff_diagonal=abs(sum_left-sum_right)
return diff_diagonal
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 →