Browse Source

feat: add soubject of VowelsIndex.go

fixDevirged
zainabdnaya 2 years ago
parent
commit
a43fa3abd3
  1. 4
      subjects/vowels-index/README.md

4
subjects/vowels-index/README.md

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

Loading…
Cancel
Save