Skip to content

Commit 20ffb35

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4a0da3c commit 20ffb35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

matrix/transpose_of_matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"""
1919

2020

21-
def transpose(matrix: list[list[int]]) ->list[list[int]]:
21+
def transpose(matrix: list[list[int]]) -> list[list[int]]:
2222
# create a null matrix of same dimension of given matrix
2323
trans = [[0] * len(matrix) for _ in range(len(matrix[0]))]
2424
for i in range(len(matrix)):

0 commit comments

Comments
 (0)