Answers for "go remove index from slice"

Go
2

go delete from slice

func remove(slice []int, s int) []int {
    return append(slice[:s], slice[s+1:]...)
}
Posted by: Guest on April-10-2020

Browse Popular Code Answers by Language