diff --git a/src/exercise1.py b/src/exercise1.py index a2f8a3f..87f47b4 100644 --- a/src/exercise1.py +++ b/src/exercise1.py @@ -1,5 +1,4 @@ def remove_char(s: str) -> str: - "removes first and last letter of a string" return s[1:-1]