Browse Source

docs: Remove piscine imports as per review

pull/1327/head
estlop 2 years ago committed by Dav Hojt
parent
commit
7d9f6eb3e5
  1. 11
      subjects/delete/README.md

11
subjects/delete/README.md

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

Loading…
Cancel
Save