Browse Source

corrected

pull/1622/head
zainabdnaya 2 years ago committed by José Rosendo
parent
commit
ebf4c17716
  1. 6
      subjects/weareunique/README.md

6
subjects/weareunique/README.md

@ -4,7 +4,7 @@
Write a function that takes two strings and returns the amount of characters that are not included in both without doubles. Write a function that takes two strings and returns the amount of characters that are not included in both without doubles.
- If there is no unique charachters return -1. - If there is no unique charachters return 0.
- If both strings are empty or one of them return -1. - If both strings are empty or one of them return -1.
@ -33,10 +33,12 @@ func main() {
arr := [][]string{ arr := [][]string{
{"foo", "boo"}, {"foo", "boo"},
{"",""},
{"abc", "def"}, {"abc", "def"},
{"hello", "yoall"}, {"hello", "yoall"},
{"everyone", ""}, {"everyone", ""},
{"hello world", "fam"}, {"hello world", "fam"},
{"pomme","pomme"}
} }
for _, v := range arr { for _, v := range arr {
fmt.Println(Weareunique(v[0], v[1])) fmt.Println(Weareunique(v[0], v[1]))
@ -49,9 +51,11 @@ And its output :
```console ```console
$ go run . $ go run .
2 2
-1
6 6
4 4
-1 -1
11 11
0
$ $
``` ```
Loading…
Cancel
Save