Last active 1725912563

slicePush.go Raw
1package main
2
3import (
4 "fmt"
5)
6
7func main() {
8 slc := []string{"a", "b", "c", "d", "e", "f", "g", "h"}
9 itemsToPush := []string{"i", "j", "k", "l"}
10 fmt.Println(slc)
11 slicePush(slc, itemsToPush)
12 fmt.Println(slc)
13}
14
15func slicePush(a, b []string) {
16 for ii := range b {
17 for i := 0; i < len(a); i++ {
18 if i+1 < len(a) {
19 a[i] = a[i+1]
20 } else {
21 a[i] = b[ii]
22 }
23 }
24 }
25}