# @param {Integer[]} nums # @param {Integer} n # @return {Integer[]} def shuffle(nums, n) nums[...n].zip(nums[n...]).flatten end 사랑해요 Ruby
댓글 0