From c38c9d5dc133d5f4ffd334ce8f99c220136bdd51 Mon Sep 17 00:00:00 2001 From: TarasFirst Date: Sat, 12 Aug 2023 15:28:13 +0300 Subject: [PATCH] Solution --- app/main.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/app/main.py b/app/main.py index b8832552..695dd2df 100644 --- a/app/main.py +++ b/app/main.py @@ -1,4 +1,20 @@ 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 + """ + count = 0 for i in phrase: