代码随想录算法训练营Day 2 | 数组(2/2) Leetcode 977.有序数组的平方 209.长度最小的子数组 59.螺旋矩阵II
今天继续学习第一题977.SquaresofaSortedArrayGivenanintegerarraynumssortedinnon-decreasingorder,returnanarrayofthesquaresofeachnumbersortedinnon-decreasingorder.看到题干以后,首先想到的就是Bruteforce,用for循环挨个平方一遍,最后nums.sort(