Shuffle the Array Solutions in GoNumber 1470Difficulty EasyAcceptance 88.9%Link LeetCodeOther languages C++SolutionsGo solution by halfrost/LeetCode-Gopackage leetcode func shuffle(nums []int, n int) []int { result := make([]int, 0) for i := 0; i < n; i++ { result = append(result, nums[i]) result = append(result, nums[n+i]) } return result}package leetcode func shuffle(nums []int, n int) []int { result := make([]int, 0) for i := 0; i < n; i++ { result = append(result, nums[i]) result = append(result, nums[n+i]) } return result }