LeetCode 977. 有序数组的平方
Posted 午夜的行人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 977. 有序数组的平方相关的知识,希望对你有一定的参考价值。
题目链接:https://leetcode-cn.com/problems/squares-of-a-sorted-array/
给定一个按非递减顺序排序的整数数组 A,返回每个数字的平方组成的新数组,要求也按非递减顺序排序。
示例 1:
输入:[-4,-1,0,3,10]
输出:[0,1,9,16,100]
示例 2:
输入:[-7,-3,2,3,11]
输出:[4,9,9,49,121]
提示:
1 <= A.length <= 10000
-10000 <= A[i] <= 10000
A 已按非递减顺序排序。
1 class Solution { 2 public int[] sortedSquares(int[] A) { 3 for(int i=0;i<A.length;i++){ 4 A[i]=A[i]*A[i]; 5 } 6 Arrays.sort(A); 7 return A; 8 } 9 }
以上是关于LeetCode 977. 有序数组的平方的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode刷题100天—977. 有序数组的平方(双指针)—day20