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;
}
for i in range():
- 배운점
-
🔗문제 링크
사이트 주소 -
[제목]
사이트 주소