function solution(s) { let answer = []; s.map((char, ind) => { if (answer.include(char) { answer.push(ind - s.indexOf(char)); } else { answer.push(-1) }) }) return answer;}틀렸다.자세히 보니, 우선 같은 글자가 있어도 indexOf는 제일 처음 나온 것만 인식함indexOf 말고 해당 요소를 모두 찾을 수 있는 메소드가 있나 봐야겠다. filterarray.filter((element, index, array) => {condition});너무 길어질 거 같아서.. ..