secound commit

This commit is contained in:
Класс
2026-04-04 10:39:38 +03:00
parent 3f9d9434c7
commit 51c37e8d87
+2 -2
View File
@@ -1,6 +1,6 @@
#student_practic
def remove_duplicate_chars(s: str) -> str:
have_char = []
answer_str=''
@@ -9,5 +9,5 @@ def remove_duplicate_chars(s: str) -> str:
have_char.append(i)
answer_str += i
return answer_str
#test function
print (remove_duplicate_chars("abacabad") )