We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff6c6c6 commit 31e41c6Copy full SHA for 31e41c6
Easy/867-transposematrix.py
@@ -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