Browse Source

corrected

pull/1185/head
zainabdnaya 2 years ago
parent
commit
c0903b687f
  1. 7
      subjects/vowels-index/README.md

7
subjects/vowels-index/README.md

@ -21,15 +21,11 @@ package main
import "fmt"
func main() {
res := []string{"student", "hello Iyan","bcdfgh", "wOrld", "","AAEO$o;jw"}
for _, i := range res {
fmt.Println(i)
fmt.Println(VowelIdx(i))
}
}
```
And its output :
@ -40,5 +36,6 @@ $ go run .
[]
[1]
[]
[0 1 2 3 5]
```

Loading…
Cancel
Save