Browse Source

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

pull/1541/head
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
@ -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))
}
```

Loading…
Cancel
Save