Answers for "golang list pop"

0

golang list pop

xs := []int{1, 2, 3, 4, 5}

i := 0 // Any valid index, however you happen to get it.
x := xs[i]
xs = append(xs[:i], xs[i+1:]...)
// Now "x" is the ith element and "xs" has the ith element removed.
Posted by: Guest on April-22-2021

Browse Popular Code Answers by Language