首页 > 其他 > 详细

LeetCode 977 Squares of a Sorted Array 解题报告

时间:2019-01-25 10:15:41      阅读:138      评论:0      收藏:0      [点我收藏+]

题目要求

Given an array of integers A sorted in non-decreasing order, return an array of the squares of each number, also in sorted non-decreasing order.

题目分析及思路

题目给出一个整数数组,已经按照非减顺序排列好了。要求返回一个数组,包含的元素是已知数组元素的平方,且按照非减顺序排列。可以使用列表的sort()函数进行排序。

python代码?

class Solution:

    def sortedSquares(self, A):

        """

        :type A: List[int]

        :rtype: List[int]

        """

        B = list()

        for i in A:

            B.append(i**2)

        B.sort()

        return B

 

LeetCode 977 Squares of a Sorted Array 解题报告

原文:https://www.cnblogs.com/yao1996/p/10317962.html

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