https://leetcode.com/problems/squares-of-a-sorted-array/ 3. 2022/04/28 시도 소요시간: 4분 class Solution { public int[] sortedSquares(int[] nums) { int left = 0; int right = nums.length - 1; int index = nums.length - 1; int[] ret = new int[nums.length]; while (left