-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e7a3ee
commit 38e4cf0
Showing
1 changed file
with
1 addition
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,2 @@ | ||
def count_occurrences(phrase: str, letter: str) -> int: | ||
""" | ||
Implement count_occurrences function: | ||
It takes a phrase and a letter and calculates the number of times | ||
the letter appears in the phrase. The function is case insensitive. | ||
count_occurrences("letter", "t") == 2 | ||
count_occurrences("abc", "a") == 1 | ||
count_occurrences("abc", "d") == 0 | ||
count_occurrences("ABC", "a") == 1 | ||
:param phrase: phrase to count in it | ||
:param letter: letter to find occurrences of it | ||
:return: count occurrences of letter in phrase | ||
""" | ||
# write your code here | ||
return phrase.lower().count(letter.lower()) |