Browse Source

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

pull/1541/head
Tiago Collot 2 years ago
parent
commit
a420b1f6d5
  1. 12
      subjects/rockandroll/README.md

12
subjects/rockandroll/README.md

@ -1,4 +1,4 @@
# rockandroll
## rockandroll
### Instructions
@ -23,14 +23,14 @@ Here is a possible program to test your function:
package main
import (
"fmt"
"strconv"
"fmt"
"piscine"
)
func main() {
fmt.Println(RockAndRoll(4))
fmt.Println(RockAndRoll(9))
fmt.Println(RockAndRoll(6))
fmt.Println(piscine.RockAndRoll(4))
fmt.Println(piscine.RockAndRoll(9))
fmt.Println(piscine.RockAndRoll(6))
}
```
And its output:

Loading…
Cancel
Save