From 379a0543eb072aa2a035f13192055be8e2441aac Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Fri, 22 Jul 2022 15:04:34 +0100 Subject: [PATCH] corrected --- subjects/weareunique/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/subjects/weareunique/README.md b/subjects/weareunique/README.md index ae984f84..3a70eaf4 100644 --- a/subjects/weareunique/README.md +++ b/subjects/weareunique/README.md @@ -2,12 +2,10 @@ ### Instructions -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 number of characters that are not included in both, without doubles. - If there is no unique charachters return 0. - If both strings are empty or one of them return -1. - ### Expected function ```go @@ -23,6 +21,7 @@ func Weareunique(str1 , str2 string) int { Here is a possible program to test your function : ```go + package main import (