码迷,mamicode.com
首页 > 其他好文 > 详细

832. Flipping an Image

时间:2019-01-13 22:48:27      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:ons   image   def   bsp   sel   优秀代码   ima   自己的   flip   

题目来源:
 
自我感觉难度/真实难度:
 
题意:
 
分析:
 
自己的代码:
class Solution(object):
    def flipAndInvertImage(self, A):
        """
        :type A: List[List[int]]
        :rtype: List[List[int]]
        """
        B=[]
        row=len(A)
        col=len(A[0])
        for i in range(row):
            B.append(A[i][::-1])
            for j in range(col):
                B[i][j]^=1
        return B

 

代码效率/结果:

Runtime: 52 ms, faster than 97.21% of Python online submissions forFlipping an Image.

 
优秀代码:
class Solution:
    def flipAndInvertImage(self, A):
        """
        :type A: List[List[int]]
        :rtype: List[List[int]]
        """
        rows = len(A)
        cols = len(A[0])
        for row in range(rows):
            A[row] = A[row][::-1]
            for col in range(cols):
                A[row][col] ^= 1
        return A

 

代码效率/结果:
 
自己优化后的代码:
 
反思改进策略:

1.0和1取反,可以使用异或1

2.可以直接对原来的list进行操作,省的重新定义list

 

832. Flipping an Image

标签:ons   image   def   bsp   sel   优秀代码   ima   自己的   flip   

原文地址:https://www.cnblogs.com/captain-dl/p/10264346.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!