Skip to content

Commit 6880ee5

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4c9e72a commit 6880ee5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

matrix/strassen_matrix_multiply.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
Matrix = list[list[int]]
1616

17+
1718
def add(A: Matrix, B: Matrix) -> Matrix:
1819
n = len(A)
1920
return [[A[i][j] + B[i][j] for j in range(n)] for i in range(n)]

0 commit comments

Comments
 (0)