중복된 문자 제거 (Lv.0 85%) 나의 풀이: def solution(my_string): answer = '' for i in my_string: if i not in answer: answer += i return answer 다른 사람의 풀이: def solution(my_string): return ''.join(dict.fromkeys(my_string)) dict.fromkeys(문자열 혹은 리스트) 문자열 혹은 리스트의 원소를 중복 제거 후 남은 원소들을 value가 없는 key로 저장 a = "people" b = dict.fromkeys(a) # {'p': None, 'e': None, 'o': None, 'l': None} print(''.join(b)) # peol 프로그래머스 코..