mirror of https://github.com/01-edu/public.git
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.
jrosendo
5c8be6373d
|
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago |
README.md
issamestring
Instructions
Write a function that returns true
if the two strings
passed as parameter are equal. Otherwise it returns false
.
The function will ignore the case of the characters.
Expected function
func IsSameString(s1, s2 string) bool {
}
Usage
Here is a possible program to test your function:
package main
import (
"fmt"
"piscine"
)
func main() {
fmt.Println(piscine.IsSameString("hello world!", "HELLO WORLD!"))
fmt.Println(piscine.IsSameString("0101 is awesome", "0101 is AWESOME"))
fmt.Println(piscine.IsSameString("foo baz", "foo bar"))
}
And its output:
$ go run .
true
true
false