File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ agree to abide by the [Code of Conduct](CODE_OF_CONDUCT.md).
11
11
12
12
* After that create a branch for your changes. For example:
13
13
* add_XXX if you will add new algorithms or data structures.
14
- * fix_XXX if you will fixe a bug on a certain algorithm or data structure.
14
+ * fix_XXX if you will fix a bug on a certain algorithm or data structure.
15
15
* test_XXX if you wrote a test/s.
16
16
* doc_XXX if you added to or edited documentation.
17
17
Original file line number Diff line number Diff line change 1
1
def multiply (matA : list , matB : list ) -> list :
2
2
"""
3
- Multiplies two square matrices matA and matB od size n x n
3
+ Multiplies two square matrices matA and matB of size n x n
4
4
Time Complexity: O(n^3)
5
5
"""
6
6
n = len (matA )
You can’t perform that action at this time.
0 commit comments