From 38e4cf08db5b3cf97b2af646ed277796b1c99203 Mon Sep 17 00:00:00 2001 From: Roman Kushnerov Date: Sat, 19 Oct 2024 00:12:27 +0300 Subject: [PATCH] Solution --- app/main.py | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/app/main.py b/app/main.py index 4ccbb02b..61587011 100644 --- a/app/main.py +++ b/app/main.py @@ -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()) \ No newline at end of file