Skip to content

Commit

Permalink
My solution
Browse files Browse the repository at this point in the history
  • Loading branch information
GavriliukArtem committed Oct 22, 2024
1 parent 7e7a3ee commit 25fa2c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ def count_occurrences(phrase: str, letter: str) -> int:
: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())

0 comments on commit 25fa2c2

Please sign in to comment.