docs: Remove piscine imports as per review

This commit is contained in:
estlop 2022-07-01 14:11:45 +01:00 committed by Dav Hojt
parent cf5f8e6c1e
commit 7d9f6eb3e5
1 changed files with 4 additions and 7 deletions

View File

@ -18,15 +18,12 @@ Here is a possible program to test your function :
```go
package main
import (
"piscine"
"fmt"
)
import "fmt"
func main() {
fmt.Println(piscine.Delete([]int{1, 2, 3, 4, 5}, 2))
fmt.Println(piscine.Delete([]int{1, 2, 3, 4, 5}, 3))
fmt.Println(piscine.Delete([]int{1, 2, 3, 4, 5}, 1))
fmt.Println(Delete([]int{1, 2, 3, 4, 5}, 2))
fmt.Println(Delete([]int{1, 2, 3, 4, 5}, 3))
fmt.Println(Delete([]int{1, 2, 3, 4, 5}, 1))
}
```