Skip to content

Commit 31e41c6

Browse files
committed
Python solution for #867: Transpose Matrix
1 parent ff6c6c6 commit 31e41c6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Easy/867-transposematrix.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class Solution:
2+
def transpose(self, matrix: List[List[int]]) -> List[List[int]]:
3+
# turn cols into rows with zip
4+
5+
return list(map(list, zip(*matrix)))

0 commit comments

Comments
 (0)