문제 설명 문자열 my_string이 매개변수로 주어집니다. my_string에서 중복된 문자를 제거하고 하나의 문자만 남긴 문자열을 return하도록 solution 함수를 완성해주세요. 입출력 예 my_string result "people" "peol" "We are the world" "We arthwold" 나의 풀이 1 2 3 4 5 6 7 8 9 10 11 12 13 function solution(my_string) { const $string = my_string.split('') const $setString = new Set($string) let answer = '' for(let i of $setString){ answer +=i } return answer } Colored by..