Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasShelbi-hub committed Sep 23, 2024
1 parent bf2c083 commit 13ef118
Showing 1 changed file with 2 additions and 20 deletions.
22 changes: 2 additions & 20 deletions app/main.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,3 @@
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
"""
counter = 0
for i in range(len(phrase)):
if phrase[i].lower() in letter.lower():
counter += 1
return counter
return sum([1 for i in range(len(phrase))
if phrase[i].lower() == letter.lower()])

0 comments on commit 13ef118

Please sign in to comment.