diff --git a/string_fundamental/README.md b/string_fundamental/README.md index 98a54f7087..939b666dbb 100644 --- a/string_fundamental/README.md +++ b/string_fundamental/README.md @@ -1,2 +1,5 @@ # Isogram -An isogram is a word that has no repeating letters, consecutive or non-consecutive. Implement a function that determines whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case. \ No newline at end of file +An isogram is a word that has no repeating letters, consecutive or non-consecutive. Implement a function that determines whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case. + +# Anagram +An anagram of a string is another string that contains same characters, only the order of characters can be different. Implemented way uses two lists to store the count of every character in provided strings which will be used to determine whether provided strings are anagram or not.