Compare commits

..

No commits in common. "29d9f18a77e4ea6a6cc0981f97f8a392c6625228" and "af4128151961eb96812a3b5b4cf3e30d2d7d6db8" have entirely different histories.

2 changed files with 1 additions and 0 deletions

View File

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