You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
342 B

2 years ago
# vowels-index
### Instructions
- Write a function that takes one argument of type string and returns an array of intergers containing the index of the vowels in the string.
- vowels : [a,i ,e ,u o]
### Expected function
```go
func VowelIdx(str string) []int {
}
```
### Usage
```console
$ go run . "hello Iyan"
$2
$5
$7
$8
$9
```
2 years ago