JavaScript 백준 온라인 알고리즘 공부
백준 11654 번 Node.js 문제풀이
const fs = require("fs");
const input = (
process.platform === "linux" ? fs.readFileSync("/dev/stdin").toString() : `z`
).trim();
console.log(input.charCodeAt(0));
charCodeAt
이다."문자열".charCodeAt([문자열 자릿수]);
input.charCodeAt(0)
이 적합한 답이다. 다만 지금처럼 문자가 하나면 input.charCodeAt()
처럼 ()만 써도 된다.String.fromCharCode(아스키코드값)
String.fromCharCode(input)
이 정답이였을 것 이다.