mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-05-23 08:51:31 -04:00
Update and rename matrix-sum-diagonals.py to matrix_sum_diagonals.py
This commit is contained in:
parent
b14d9fcee2
commit
250e136166
1 changed files with 0 additions and 15 deletions
|
@ -2,15 +2,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# author: bt3gl
|
# author: bt3gl
|
||||||
|
|
||||||
# Given a square matrix, calculate the absolute difference
|
|
||||||
# between the sums of its diagonals.
|
|
||||||
|
|
||||||
import math
|
|
||||||
import os
|
|
||||||
import random
|
|
||||||
import re
|
|
||||||
import sys
|
|
||||||
|
|
||||||
def diagonal_difference(arr):
|
def diagonal_difference(arr):
|
||||||
|
|
||||||
diag_1 = 0
|
diag_1 = 0
|
||||||
|
@ -27,9 +18,3 @@ def diagonal_difference(arr):
|
||||||
|
|
||||||
return diag_1, diag_2, abs(diag_1 - diag_2)
|
return diag_1, diag_2, abs(diag_1 - diag_2)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
|
|
||||||
arr = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
|
|
||||||
print(diagonal_difference(arr))
|
|
Loading…
Add table
Add a link
Reference in a new issue