dropped files

This commit is contained in:
Marco Schmid 2026-02-27 14:33:14 +01:00
parent 868c4bdadc
commit 6debbb84dd
2 changed files with 0 additions and 11 deletions

View File

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

View File

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