- 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
Write a function that takes a slice of integers and an `int` as arguments, if the given `int` exists in the slice then remove it, otherwise return the slice.