Browse Source

fix rot14 hackaton

content-update
lee 5 years ago
parent
commit
426d118f86
  1. 5
      subjects/rot14.en.md
  2. 5
      subjects/rot14.fr.md

5
subjects/rot14.en.md

@ -9,7 +9,7 @@ Write a function `rot14` that returns the string within the parameter but transf
### Expected function
```go
func rot14(str string) string {
func Rot14(str string) string {
}
```
@ -22,11 +22,12 @@ Here is a possible [program](TODO-LINK) to test your function :
package main
import (
piscine ".."
"github.com/01-edu/z01"
)
func main() {
result := rot14("Hello How are You")
result := piscine.Rot14("Hello How are You")
arrayRune := []rune(result)
for _, s := range arrayRune {

5
subjects/rot14.fr.md

@ -9,7 +9,7 @@ Write a function `rot14` that returns the string within the parameter but transf
### Expected function
```go
func rot14(str string) string {
func Rot14(str string) string {
}
```
@ -22,11 +22,12 @@ Here is a possible [program](TODO-LINK) to test your function :
package main
import (
piscine ".."
"github.com/01-edu/z01"
)
func main() {
result := rot14("Hello How are You")
result := piscine.Rot14("Hello How are You")
arrayRune := []rune(result)
for _, s := range arrayRune {

Loading…
Cancel
Save