fix(dealapackofcards): miss import piscine and add second # to the title

This commit is contained in:
Tiago Collot 2022-09-22 16:49:18 +01:00
parent 378181a995
commit d771054ccc
1 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# dealapackofcards
## dealapackofcards
### Instructions
@ -21,9 +21,13 @@ func DealAPackOfCards (deck []int) {
Here is a possible program to test your function:
```go
package main
import "piscine"
func main() {
deck := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}
DealAPackOfCards(deck)
piscine.DealAPackOfCards(deck)
}
```