Browse Source

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

DEV-3376-pointers-drop-the-thread-multiple-issues
Tiago Collot 2 years ago
parent
commit
5084471315
  1. 13
      subjects/shoppingsummarycounter/README.md

13
subjects/shoppingsummarycounter/README.md

@ -1,4 +1,4 @@
# shoppingsummarycounter ## shoppingsummarycounter
### Instructions ### Instructions
@ -21,12 +21,15 @@ Here is a possible program to test your function:
```go ```go
package main package main
import "fmt" import (
"fmt"
"piscine"
)
func main() { func main() {
summary := "Burger Water Carrot Coffee Water Water Chips Carrot Carrot Burger Carrot Water" summary := "Burger Water Carrot Coffee Water Water Chips Carrot Carrot Burger Carrot Water"
for index,element := range ShoppingSummaryCounter(summary){ for index,element := range piscine.ShoppingSummaryCounter(summary){
fmt.Println(index,"=>",element) fmt.Println(index,"=>",element)
} }
} }
``` ```

Loading…
Cancel
Save