From 8171a0193f3d780ba5fafc725801f4db34021c97 Mon Sep 17 00:00:00 2001 From: Inanc Gumus Date: Thu, 6 Dec 2018 00:20:27 +0300 Subject: [PATCH] add: hints to arrays book finder exercise --- 14-arrays/exercises/10-hipsters-love-search/main.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/14-arrays/exercises/10-hipsters-love-search/main.go b/14-arrays/exercises/10-hipsters-love-search/main.go index 066b5e3..67ac6ea 100644 --- a/14-arrays/exercises/10-hipsters-love-search/main.go +++ b/14-arrays/exercises/10-hipsters-love-search/main.go @@ -50,6 +50,11 @@ package main // go run main.go void // Search Results: // We don't have the book: "void" +// +// HINTS: +// + To find out whether a string contains another string value, you can use the strings.Contains function. +// + To convert a string value to lowercase, you can use the strings.ToLower function. +// + Check out the strings package for more information. // --------------------------------------------------------- func main() {