首页 > 其他 > 详细

2019年3月8日 905. Sort Array By Parity、832. Flipping an Image

时间:2019-03-08 10:14:33      阅读:151      评论:0      收藏:0      [点我收藏+]

比较简单的模拟题。

#905
class Solution(object):
    def sortArrayByParity(self, A):
        """
        :type A: List[int]
        :rtype: List[int]
        """
        ret = []
        for i in A:
            if i % 2 == 0:
                ret.insert(0, i)
            else:
                ret.append(i)
        return ret


#832
class Solution(object):
    def flipAndInvertImage(self, A):
        """
        :type A: List[List[int]]
        :rtype: List[List[int]]
        """
        ret =[]
        for i in A:
            i.reverse()
            ret.append([(j+1)%2 for j in i])
        return ret

2019年3月8日 905. Sort Array By Parity、832. Flipping an Image

原文:https://www.cnblogs.com/seenthewind/p/10493888.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!