From a4b43cc606811ee8abba20b5a4da2420e1127404 Mon Sep 17 00:00:00 2001 From: salodoxera Date: Thu, 3 Oct 2024 15:07:36 +0300 Subject: [PATCH] remove_test_code --- app/main.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/main.py b/app/main.py index d084c10d..2e36f8cf 100644 --- a/app/main.py +++ b/app/main.py @@ -17,7 +17,3 @@ def count_occurrences(phrase: str, letter: str) -> int: return phrase.lower().count(letter.lower()) -count_occurrences("letter", "t") -count_occurrences("abc", "a") -count_occurrences("abc", "d") -count_occurrences("ABC", "a")