Jessie Yujessieyu1.hashnode.dev·Feb 20, 2024Leetcode 977. Squares of a Sorted ArrayGiven an integer array nums sorted in non-decreasing order, return an array ofthe squares of each numbersorted in non-decreasing order. Example 1: Input: nums = [-4,-1,0,3,10] Output: [0,1,9,16,100] Explanation: After squaring, the array becomes [16,...ArrayManipulation