Skip to content

Commit ae12160

Browse files
author
chenzhao
committed
Add 0977
1 parent b06de90 commit ae12160

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

0977. Squares of a Sorted Array.js

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// 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.
2+
3+
// Example 1:
4+
5+
// Input: [-4,-1,0,3,10]
6+
// Output: [0,1,9,16,100]
7+
8+
// Example 2:
9+
10+
// Input: [-7,-3,2,3,11]
11+
// Output: [4,9,9,49,121]
12+
13+
// Note:
14+
15+
// 1 <= A.length <= 10000
16+
// -10000 <= A[i] <= 10000
17+
// A is sorted in non-decreasing order.
18+
19+
20+
/**
21+
* @param {number[]} A
22+
* @return {number[]}
23+
*/
24+
var sortedSquares = function(A) {
25+
A = A.map(item => item * item)
26+
A.sort((a, b) => a - b)
27+
return A
28+
}
29+
// Runtime: 136 ms, faster than 63.05% of JavaScript online submissions for Squares of a Sorted Array.
30+
// Memory Usage: 44.2 MB, less than 7.41% of JavaScript online submissions for Squares of a Sorted Array.

0 commit comments

Comments
 (0)