You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
575 B

## sliceremove
### Instructions
- Write a function that takes a slice of integers and int and removes any number in the slice that is equal to the int then returns the slice
- If the slice is empty, return the slice itself
### Expected function
```go
func SliceRemove(slice []int , num int) []int {
}
```
### Usage
Here is a possible program to test your function :
```go
package main
import (
"fmt"
)
func main() {
fmt.Println(SliceRemove([]int{1, 2, 3},2))
fmt.Println(SliceRemove([]int{4,3}, 4))
}
```
And its output :
```console
$ go run .
[1 3 4]
[4]
```