Skip to content

Commit

Permalink
Update readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
Avinash Magar authored and Avinash Magar committed Oct 2, 2018
1 parent 8d1a849 commit 0d613ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion string_fundamental/README.md
Original file line number Diff line number Diff line change
@@ -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.
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.

0 comments on commit 0d613ee

Please sign in to comment.