Browse Source

feat: add solution of vowelsindex.go

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

4
subjects/vowels-index/README.md

@ -8,7 +8,7 @@
### Expected function
```go
func VowelIdx(str string) []int {
func vowelsindex(str string) []int {
}
```
### Usage
@ -20,7 +20,7 @@ import "fmt"
func main() {
res := VowelIdx("hello Iyan")
res := vowelsindex("hello Iyan")
for _, i := range res {
fmt.Println(i)
}

Loading…
Cancel
Save