We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52b9408 commit 2a129baCopy full SHA for 2a129ba
CONTRIBUTING.md
@@ -11,7 +11,7 @@ agree to abide by the [Code of Conduct](CODE_OF_CONDUCT.md).
11
12
* After that create a branch for your changes. For example:
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.
+ * fix_XXX if you will fix a bug on a certain algorithm or data structure.
15
* test_XXX if you wrote a test/s.
16
* doc_XXX if you added to or edited documentation.
17
algorithms/matrix/matrix_exponentiation.py
@@ -1,6 +1,6 @@
1
def multiply(matA: list, matB: list) -> list:
2
"""
3
- Multiplies two square matrices matA and matB od size n x n
+ Multiplies two square matrices matA and matB of size n x n
4
Time Complexity: O(n^3)
5
6
n = len(matA)
0 commit comments