思路
按照題意解決
code
func sortedSquares(A []int) []int {
for k, v := range A {
A[k] = v * v
}
sort.Ints(A)
return A
}
複制
更多内容請移步我的repo:https://github.com/anakin/golang-leetcode
按照題意解決
func sortedSquares(A []int) []int {
for k, v := range A {
A[k] = v * v
}
sort.Ints(A)
return A
}
複制
更多内容請移步我的repo:https://github.com/anakin/golang-leetcode