Skip to content

Commit 2cb6a65

Browse files
Corrects failing check in master (TheAlgorithms#1676)
1 parent 9873361 commit 2cb6a65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

divide_and_conquer/strassen_matrix_multiplication.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def strassen(matrix1: List, matrix2: List) -> List:
145145

146146

147147
if __name__ == "__main__":
148-
matrix1= [
148+
matrix1 = [
149149
[2, 3, 4, 5],
150150
[6, 4, 3, 1],
151151
[2, 3, 6, 7],

0 commit comments

Comments
 (0)