Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 754 Bytes

form.md

File metadata and controls

56 lines (36 loc) · 754 Bytes

문제 제목

📝문제 설명

⚠제한사항

입출력 예

🧐CODE REVIEW

😫나의 오답 풀이

🧾나의 풀이

function solution(topping) {
    let answer = 0;
    for(let i = 0; i < topping.length; i++) {
        const chulsu = new Set(topping.slice(0, i));
        const brother = new Set(topping.slice(i));
        if(chulsu.size === brother.size) answer++;
    }
    return answer;
}

📝해설

😅개선점

  1. for i in range():

다른 풀이

📝해설

🔖정리

  1. 배운점

📚참고 사이트

  • 🔗문제 링크
    사이트 주소

  • [제목]
    사이트 주소