Skip to content

Commit a6d273e

Browse files
committed
add LC-977
Signed-off-by: Tahsin Tunan <[email protected]>
1 parent ee7a3bc commit a6d273e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

go/0977-squares-of-a-sorted-array.go

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
func sortedSquares(nums []int) []int {
2+
sq := make([]int, len(nums))
3+
i := len(nums) - 1
4+
for l, r := 0, len(nums)-1; l <= r; {
5+
if abs(nums[l]) > abs(nums[r]) {
6+
sq[i] = nums[l] * nums[l]
7+
l++
8+
} else {
9+
sq[i] = nums[r] * nums[r]
10+
r--
11+
}
12+
i--
13+
}
14+
return sq
15+
}
16+
17+
func abs(x int) int {
18+
if x < 0 {
19+
x = x * -1
20+
}
21+
return x
22+
}

0 commit comments

Comments
 (0)