LeetCode 977 有序数组的平方

 原题链接:https://leetcode-cn.com/problems/squares-of-a-sorted-array/

十分钟写完,此题过于简单。

public class Solution {
    public int[] SortedSquares(int[] A) {
       for (int i = 0; i < A.Length; i++)
			{
				A[i] = A[i] * A[i];
			} 
			  Array.Sort(A);
			return A; 
    }
}

 

你可能感兴趣的:(Leetcode)