프로그래머스JS | [1차] 뉴스 클러스터링
출처 : 프로그래머스 - 코딩테스트 연습 - 2018 KAKAO BLIND RECRUITMENT- [1차] 뉴스 클러스터링 ❌ Solution ( 정확성 53.8 / 100 ) function solution(str1, str2) { var answer = 0; const upperStr1 = str1.toUpperCase(); const upperStr2 = str2.toUpperCase(); const arrStr1 = splitEl(upperStr1); const arrStr2 = splitEl(upperStr2); const union = []; const intersection = []; for(let i = 0; i < arrStr1.length; i++) { // 변환된 str1 배열의 인자..