首页 > 其他 > 详细

2019年3月7日 595. Big Countries \ 977. Squares of a Sorted Array

时间:2019-03-07 10:49:08      阅读:181      评论:0      收藏:0      [点我收藏+]

没错,我就是弱题收割机。

select name, population, area from World where area > 3000000 or population > 25000000;


class Solution(object):
    def sortedSquares(self, A):
        """
        :type A: List[int]
        :rtype: List[int]
        """
        for i in xrange(len(A)):
            A[i] = A[i] * A[i]
        
        A.sort()
        return A

2019年3月7日 595. Big Countries \ 977. Squares of a Sorted Array

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

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