LeetCode|832. 翻转图像(python)

2022/2/26 14:22:07

本文主要是介绍LeetCode|832. 翻转图像(python),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

题目:
在这里插入图片描述
代码:

class Solution:
    def flipAndInvertImage(self, image: List[List[int]]) -> List[List[int]]:
        for i in range(len(image)):
            image[i]=image[i][::-1]
            for j in range(len(image[i])):
                if image[i][j]==1:
                    image[i][j]-=1
                else:
                    image[i][j]+=1
        return image


这篇关于LeetCode|832. 翻转图像(python)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程