JavaScript 백준 온라인 알고리즘 공부
백준 10809번 Node.js 문제풀이
const fs = require("fs");
const input = (
process.platform === "linux"
? fs.readFileSync("/dev/stdin").toString()
: `baekjoon`
).trim();
let answerArr = [];
for (let i = 97; i <= 122; i++) {
let alph = String.fromCharCode(i);
let answer = input.indexOf(alph);
answerArr += answer + " ";
}
console.log(answerArr);
indexOf()
를 쓰라고 유도한 듯이 보인다.String.fromCharCode(i)
로 변환해 A~Z 모두 돌아가는 단어를 대조 할 수있는 환경이 구축되므로 문제를 풀 수있게 된다.