Skip to content

Commit 980a8b8

Browse files
committed
feat: Strassen's matrix multiplication algorithm added
1 parent 3e55d21 commit 980a8b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,4 +129,4 @@ def _strassen_recursive(A: Matrix, B: Matrix, threshold: int) -> Matrix:
129129
# verify against naive
130130
expected = naive_mul(A, B)
131131
assert C == expected, "Strassen result differs from naive multiplication!"
132-
print("Verified: result matches naive multiplication.")
132+
print("Verified: result matches naive multiplication.")

0 commit comments

Comments
 (0)