성격유형검사하기1 [JS] 성격 유형 검사 (해설포함) 테스트케이스 최대 소요시간 : 0.31ms 문제 요약 // survey = 문제별 점수 해당 유형 // choices = 선택된 답변 제출답안 function solution(survey, choices) { let addingText = {R:0, T:0, C:0, F:0, J:0, M:0, A:0, N:0 } ; choices.forEach((choice, index)=>{ switch(choice){ case 1 : addingText[ survey[index][0] ] += 3; break; case 2 : addingText[ survey[index][0] ] += 2; break; case 3 : addingText[ survey[index][0] ] += 1; break; case 5 : a.. 2024. 4. 10. 이전 1 다음 728x90