Skip to content

Commit e156fe3

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

String/CheckAnagram.js

Lines changed: 1 addition & 1 deletion
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)