1. 程式人生 > >leetcode - 832 - 翻轉影象

leetcode - 832 - 翻轉影象

class Solution:
    def flipAndInvertImage(self, A):
        """
        :type A: List[List[int]]
        :rtype: List[List[int]]
        """
        m, n =len(A),len(A[0])
        for i in range(m):
            for j in range(n):
                if A[i][j]==1:
                    A[i][j] -=1
                else:
                    A[i][j]+=1
            A[i].reverse()
        return A