leetcode——832. 翻转图像

Posted 欣姐姐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode——832. 翻转图像相关的知识,希望对你有一定的参考价值。

class Solution(object):
    def flipAndInvertImage(self, A):
        """
        :type A: List[List[int]]
        :rtype: List[List[int]]
        """
        for i in range(len(A)):
            A[i]=A[i][::-1]
            for j in range(len(A[i])):
                A[i][j]=1-A[i][j]
        return A
执行用时 :44 ms, 在所有 python 提交中击败了73.88%的用户
内存消耗 :11.8 MB, 在所有 python 提交中击败了14.29%的用户
 
——2019.10.29

以上是关于leetcode——832. 翻转图像的主要内容,如果未能解决你的问题,请参考以下文章

算法leetcode|832. 翻转图像(rust和go)

算法leetcode|832. 翻转图像(rust和go)

text leetcode练习(832.翻转图像)

leetcode——832. 翻转图像

832. 翻转图像『简单』

Leetcode#832. Flipping an Image(翻转图像)