Browse Source

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

1153-word-abbreviate
Tiago Collot 2 years ago
parent
commit
7991881a01
  1. 11
      subjects/shoppinglistsort/README.md

11
subjects/shoppinglistsort/README.md

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

Loading…
Cancel
Save