Browse Source

fix

pull/190/head
Christopher Fremond 5 years ago committed by Christopher Fremond
parent
commit
877e722845
  1. 3
      subjects/map.en.md
  2. 3
      subjects/map.fr.md

3
subjects/map.en.md

@ -25,8 +25,7 @@ import (
func main() { func main() {
arr := []int{1, 2, 3, 4, 5, 6} arr := []int{1, 2, 3, 4, 5, 6}
result := []bool{} result := piscine.Map(piscine.IsPrime, arr)
result = piscine.Map(piscine.IsPrime, arr)
fmt.Println(result) fmt.Println(result)
} }
``` ```

3
subjects/map.fr.md

@ -25,8 +25,7 @@ import (
func main() { func main() {
arr := []int{1, 2, 3, 4, 5, 6} arr := []int{1, 2, 3, 4, 5, 6}
result := []bool{} result := piscine.Map(piscine.IsPrime, arr)
result = piscine.Map(piscine.IsPrime, arr)
fmt.Println(result) fmt.Println(result)
} }
``` ```

Loading…
Cancel
Save