Leetcode 867. Transpose Matrix

class Solution:
    def transpose(self, A: List[List[int]]) -> List[List[int]]:
        return [list(i) for i in list(zip(*A))]

 

posted @ 2019-04-13 07:35  周洋  阅读(162)  评论(0编辑  收藏  举报