Compare commits

..

No commits in common. "fbcb5ba00ba76f2b099f751f1545f22fd6440f74" and "917a78a3f1779b75f5f084ec4f12db4d2312f1b6" have entirely different histories.

2 changed files with 0 additions and 11 deletions

View File

@ -1,5 +0,0 @@
def remove_char(s: str) -> str:
return s[1:-1]

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