Skip to content

Commit

Permalink
Solutiom
Browse files Browse the repository at this point in the history
  • Loading branch information
mkuchuman committed Jan 14, 2024
1 parent 7e7a3ee commit 89d1d7d
Showing 1 changed file with 7 additions and 16 deletions.
23 changes: 7 additions & 16 deletions app/main.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
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
count = 0
phrase = phrase.lower()
letter = letter.lower()
for i in phrase:
if i == letter:
count += 1
return count

0 comments on commit 89d1d7d

Please sign in to comment.