dropped files

This commit is contained in:
Marco Schmid 2026-02-27 14:34:43 +01:00
parent 6debbb84dd
commit 917a78a3f1
2 changed files with 0 additions and 12 deletions

View File

@ -1,6 +0,0 @@
def remove_char(s: str) -> str:
return s[1:-1]
if __name__ == "__main__":
print(remove_char("hallo"))

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") == ""