977. 有序数组的平方
Posted panweiwei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了977. 有序数组的平方相关的知识,希望对你有一定的参考价值。
代码一:
1 class Solution(object): 2 def sortedSquares(self, A): 3 """ 4 :type A: List[int] 5 :rtype: List[int] 6 """ 7 ans=[] 8 for i in range(len(A)): 9 ans.append(A[i]*A[i]) 10 return sorted(ans)
代码二:
1 class Solution(object): 2 def sortedSquares(self, A): 3 """ 4 :type A: List[int] 5 :rtype: List[int] 6 """ 7 return sorted([i**2 for i in A])
以上是关于977. 有序数组的平方的主要内容,如果未能解决你的问题,请参考以下文章
代码随想录算法训练营第二天 | 977.有序数组的平方209.长度最小的子数组59.螺旋矩阵II
代码随想录算法训练营第二天 | 977.有序数组的平方209.长度最小的子数组59.螺旋矩阵II