exercise1 #1

Merged
schmidmarco merged 2 commits from exercise1 into master 2026-02-25 17:25:38 +01:00
Showing only changes of commit 4011c72ce1 - Show all commits

View File

@ -1,5 +1,4 @@
def remove_char(s: str) -> str:
"removes first and last letter of a string"
return s[1:-1]