Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

completed the task , py-count-occurences #678

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
17 changes: 1 addition & 16 deletions app/main.py
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())