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

LeetCode 977 Squares of a Sorted Array 解题报告

时间:2019-01-25 11:50:30      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:分析   题目   als   返回   list()   ber   .so   代码   函数   

题目要求

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 解题报告

标签:分析   题目   als   返回   list()   ber   .so   代码   函数   

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

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