1. 程式人生 > >leetcode 832 Flipping an Image(反轉影象) python3 最簡程式碼(一行程式碼)

leetcode 832 Flipping an Image(反轉影象) python3 最簡程式碼(一行程式碼)

class Solution:
    def flipAndInvertImage(self, A):
        """
        :type A: List[List[int]]
        :rtype: List[List[int]]
        """
        return [list(map(lambda x , y : x ^ y, row[::-1] , len(row)*[1]))  for row in A]