977. 有序数组的平方

2021-02-03 19:17

阅读:645

标签:有序   alt   app   数组   png   ima   microsoft   ros   代码   

技术图片

 

 技术图片

 

 技术图片

 

 技术图片

 

 

代码一:

 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. 有序数组的平方

标签:有序   alt   app   数组   png   ima   microsoft   ros   代码   

原文地址:https://www.cnblogs.com/panweiwei/p/12800285.html


评论


亲,登录后才可以留言!