diff --git a/strings/python/word_count.py b/strings/python/word_count.py new file mode 100644 index 00000000..b4b32613 --- /dev/null +++ b/strings/python/word_count.py @@ -0,0 +1,10 @@ +def word_count(s: str) -> int: + return len(s.lower().split()) + + +def unique_word_count(s: str) -> int: + return len(set(s.lower().split())) + + +for s in ("The Matrix", "To Be or Not to Be", "Kiss Kiss Bang Bang"): + print(s, word_count(s), unique_word_count(s))