Compare commits

..

No commits in common. "879d53c25c9862e756acea7af99358cc94bc1f71" 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]