문제 링크
풀이
const input = require("fs").readFileSync("/dev/stdin").toString().trim().split(/\s/);
const n = input[0];
const names = input.slice(1);
let spelling = names[0].split("");
for (let i=1; i<names.length; i++) {
for (let j=0; j<spelling.length; j++) {
if (spelling[j] !== "?" && names[i][j] !== spelling[j]) spelling[j] = "?";
}
}
console.log(spelling.join(""));
맨 첫 번째 단어를 spelling에 split하여 저장한 후, 파일 이름들을 순회하면서 맨 첫 번째 단어와 스펠링이 일치하지 않는 부분이 있을 때마다 spelling의 해당 인덱스를 "?"로 바꾸었다.
'연습장 > 백준(BOJ) 문제풀이' 카테고리의 다른 글
[백준 11653] 소인수분해 with Python (0) | 2021.04.06 |
---|---|
[백준 1977] 완전제곱수 with Node.js (0) | 2021.04.05 |
[백준 10773] 제로 with Python (0) | 2021.04.05 |
[백준 1373] 2진수 8진수 with Node.js (0) | 2021.04.04 |
[백준 10820] 문자열 분석 with Node.js (0) | 2021.04.03 |