Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions strings/word_occurence.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Created by sarathkaul on 17/11/19
from collections import defaultdict


def word_occurence(sentence: str) -> dict:
"""
>>> from collections import Counter
>>> SENTENCE = "a b A b c b d b d e f e g e h e i e j e 0"
>>> occurence_dict = word_occurence(SENTENCE)
>>> all(occurence_dict[word] == count for word, count
... in Counter(SENTENCE.split()).items())
True
"""
occurence = defaultdict(int)
# Creating a dictionary containing count of each word
for word in sentence.split(" "):
occurence[word] += 1
return occurence


if __name__ == "__main__":
for word, count in word_occurence("INPUT STRING").items():
print(f"{word}: {count}")