摘要: 水 class Solution { public: vector<int> shuffle(vector<int>& nums, int n) { vector<int> ans(2*n); for(int i=0; i<n; i++){ ans[2*i]=nums[i]; ans[2*i+1] 阅读全文
posted @ 2020-06-07 15:34 CrosseaLL 阅读(121) 评论(0) 推荐(0) 编辑