Skip to content

Commit 981f0c9

Browse files
committed
feat: Strassen's matrix multiplication algorithm added
1 parent d4a95a6 commit 981f0c9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

matrix/strassen_matrix_multiply.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
"""
1414

1515

16-
from typing import List
17-
18-
Matrix = List[List[int]]
16+
Matrix = list[list[int]]
1917

2018
def add(A: Matrix, B: Matrix) -> Matrix:
2119
n = len(A)

0 commit comments

Comments
 (0)