def solution(my_string): answer = '' for i in my_string: if i not in answer: answer += i return answer
문자를 새로운 변수에 하나씩 추가 변수에 중복되는 문자가 있으면 패스