From 51c37e8d87d48f5f03eef464877c1910c8bc8b1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=BB=D0=B0=D1=81=D1=81?= Date: Sat, 4 Apr 2026 10:39:38 +0300 Subject: [PATCH] secound commit --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 6d752a7..85db91d 100644 --- a/main.py +++ b/main.py @@ -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") )