摘要: !!!题目链接!!! Solution: class Solution { public: void rotate(vector<int>& nums, int k) { vector<int> result(0); if(k > nums.size()) k = k%nums.size(); re 阅读全文
posted @ 2022-01-06 23:55 ReaIms 阅读(25) 评论(0) 推荐(0) 编辑
摘要: !!!题目链接!!! Solution: class Solution { public: vector<int> sortedSquares(vector<int>& nums) { vector<int> result(nums.size()); int le = 0; int ri = num 阅读全文
posted @ 2022-01-06 23:21 ReaIms 阅读(23) 评论(0) 推荐(0) 编辑