Skip to content

Commit e156fe3

Browse files
authored
tweak: must be same output string (#395)
1 parent 962176a commit e156fe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

String/CheckAnagram.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const checkAnagram = (str1, str2) => {
88

99
// If both strings have not same lengths then they can not be anagram.
1010
if (str1.length !== str2.length) {
11-
return 'Not Anagram'
11+
return 'Not anagrams'
1212
}
1313

1414
// Use hashmap to keep count of characters in str1

0 commit comments

Comments
 (0)