dropped files

This commit is contained in:
Marco Schmid 2026-02-27 14:44:50 +01:00
parent fbcb5ba00b
commit e2b8b14d44
2 changed files with 0 additions and 11 deletions

View File

@ -1,5 +0,0 @@
def remove_char(s: str) -> str:
return s[1:-1]

View File

@ -1,6 +0,0 @@
from src.exercise1 import remove_char
def test_remove_first_last_char() -> None:
assert remove_char("eloquent") == "loquen"
assert remove_char("ab") == ""