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

Posted

tags:

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

class Solution:
    def flipAndInvertImage(self, A):
        """
        :type A: List[List[int]]
        :rtype: List[List[int]]
        """
        def invert(value):
            if value==1:
                return 0
            else:
                return 1
            
        for ListIn in A:
            ListCopy = ListIn[:] # cannot use ListCopy = List, otherwise error will appear
            print (ListCopy)
            for i in range(len(A[0])):
                
                ListIn[i] = invert(ListCopy[len(A[0])-i-1])
                
        return A

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

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

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

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

leetcode——832. 翻转图像

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

832. 翻转图像『简单』