comments | difficulty | edit_url | tags | |||
---|---|---|---|---|---|---|
true |
Easy |
|
Given an integer array nums
sorted in non-decreasing order, return an array of the squares of each number sorted in non-decreasing order.
Example 1:
Input: nums = [-4,-1,0,3,10] Output: [0,1,9,16,100] Explanation: After squaring, the array becomes [16,1,0,9,100]. After sorting, it becomes [0,1,9,16,100].
Example 2:
Input: nums = [-7,-3,2,3,11] Output: [4,9,9,49,121]
Constraints:
1 <= nums.length <= 104
-104 <= nums[i] <= 104
nums
is sorted in non-decreasing order.
Follow up: Squaring each element and sorting the new array is very trivial, could you find an
O(n)
solution using a different approach?
Since the array
The time complexity is
class Solution:
def sortedSquares(self, nums: List[int]) -> List[int]:
ans = []
i, j = 0, len(nums) - 1
while i <= j:
a = nums[i] * nums[i]
b = nums[j] * nums[j]
if a > b:
ans.append(a)
i += 1
else:
ans.append(b)
j -= 1
return ans[::-1]
class Solution {
public int[] sortedSquares(int[] nums) {
int n = nums.length;
int[] ans = new int[n];
for (int i = 0, j = n - 1, k = n - 1; i <= j; --k) {
int a = nums[i] * nums[i];
int b = nums[j] * nums[j];
if (a > b) {
ans[k] = a;
++i;
} else {
ans[k] = b;
--j;
}
}
return ans;
}
}
class Solution {
public:
vector<int> sortedSquares(vector<int>& nums) {
int n = nums.size();
vector<int> ans(n);
for (int i = 0, j = n - 1, k = n - 1; i <= j; --k) {
int a = nums[i] * nums[i];
int b = nums[j] * nums[j];
if (a > b) {
ans[k] = a;
++i;
} else {
ans[k] = b;
--j;
}
}
return ans;
}
};
func sortedSquares(nums []int) []int {
n := len(nums)
ans := make([]int, n)
for i, j, k := 0, n-1, n-1; i <= j; k-- {
a := nums[i] * nums[i]
b := nums[j] * nums[j]
if a > b {
ans[k] = a
i++
} else {
ans[k] = b
j--
}
}
return ans
}
impl Solution {
pub fn sorted_squares(nums: Vec<i32>) -> Vec<i32> {
let n = nums.len();
let mut ans = vec![0; n];
let (mut i, mut j) = (0, n - 1);
for k in (0..n).rev() {
let a = nums[i] * nums[i];
let b = nums[j] * nums[j];
if a > b {
ans[k] = a;
i += 1;
} else {
ans[k] = b;
j -= 1;
}
}
ans
}
}
/**
* @param {number[]} nums
* @return {number[]}
*/
var sortedSquares = function (nums) {
const n = nums.length;
const ans = Array(n).fill(0);
for (let i = 0, j = n - 1, k = n - 1; i <= j; --k) {
const [a, b] = [nums[i] * nums[i], nums[j] * nums[j]];
if (a > b) {
ans[k] = a;
++i;
} else {
ans[k] = b;
--j;
}
}
return ans;
};
class Solution {
/**
* @param Integer[] $nums
* @return Integer[]
*/
function sortedSquares($nums) {
$n = count($nums);
$ans = array_fill(0, $n, 0);
for ($i = 0, $j = $n - 1, $k = $n - 1; $i <= $j; --$k) {
$a = $nums[$i] * $nums[$i];
$b = $nums[$j] * $nums[$j];
if ($a > $b) {
$ans[$k] = $a;
++$i;
} else {
$ans[$k] = $b;
--$j;
}
}
return $ans;
}
}