diff --git a/app/main.py b/app/main.py index 8b676102..729fc27f 100644 --- a/app/main.py +++ b/app/main.py @@ -4,6 +4,3 @@ def count_occurrences(phrase: str, letter: str) -> int: if char.lower() == letter.lower(): counter += 1 return counter - - -print(count_occurrences('abc', 'b'))