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

This commit is contained in:
Tiago Collot 2022-09-22 16:31:09 +01:00
parent 7736e2d02e
commit 7991881a01
1 changed files with 7 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# shoppinglistsort
## shoppinglistsort
### Instructions
@ -21,11 +21,14 @@ Here is a possible program to test your function:
```go
package main
import "fmt"
import (
"fmt"
"piscine"
)
func main() {
array:= []string{"Banana", "Mushroom", "Salt", "Pepper","Tea", "Milk"}
fmt.Println(ShoppingListSort(array))
array:= []string{"Banana", "Mushroom", "Salt", "Pepper","Tea", "Milk"}
fmt.Println(piscine.ShoppingListSort(array))
}
```