天天看點

Golang Leetcode 977. Squares of a Sorted Array.go思路code

思路

按照題意解決

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