-
[백준]1315번 그룹 단어 체커 with Node.jsProgramming/Algorithm 2022. 7. 3. 19:01
const input = require("fs").readFileSync("/dev/stdin").toString().split("\n"); let result = 0; for(let i=1; i<=input[0];i++){ const word = input[i] const arr = []; let grouping = true; for(let j=0;j<word.length;j++){ if (arr.indexOf(word[j]) === -1) { arr.push(word[j]); } else { if (arr.indexOf(word[j]) !== arr.length - 1) { grouping = false; break; }; }; }; if(grouping) { result++; }; }; console.log(result);
'Programming > Algorithm' 카테고리의 다른 글
[백준]2477번 참외밭 with Node.js (0) 2022.11.20 [백준]14425번 문자열 집합 with Node.js (0) 2022.11.18 [백준]1157번 단어 공부 with Node.js (0) 2022.06.25 [백준]4101번 크냐? with Node.js (0) 2022.06.15 [백준]9020번 골드바흐의 추측 with Node.js (1) 2022.04.14