From a43fa3abd36355b6df3af8a0d987955817b1580f Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Thu, 9 Jun 2022 23:16:30 +0100 Subject: [PATCH] feat: add soubject of VowelsIndex.go --- subjects/vowels-index/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/vowels-index/README.md b/subjects/vowels-index/README.md index 1fb26d79..7b04c093 100644 --- a/subjects/vowels-index/README.md +++ b/subjects/vowels-index/README.md @@ -8,7 +8,7 @@ ### Expected function ```go -func vowelsindex(str string) []int { +func VowelsIndex(str string) []int { } ``` ### Usage @@ -20,7 +20,7 @@ import "fmt" func main() { - res := vowelsindex("hello Iyan") + res := VowelsIndex("hello Iyan") for _, i := range res { fmt.Println(i) }