언젠가는 펼쳐 볼 아카이브
[BOJ] 27866번 - 문자와 문자열 본문
사용언어: javascript - node.js
#제출코드
const fs = require('fs');
const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt';
const input = fs.readFileSync(filePath).toString().trim().split('\n');
const idx = +input[1];
solution(input[0], idx);
function solution(str, index) {
console.log(str.charAt(index - 1));
}
'IT > Baekjoon Oline Judge' 카테고리의 다른 글
[BOJ] 9086번 - 문자열 (0) | 2023.08.17 |
---|---|
[BOJ] 2743번 - 단어 길이 재기 (0) | 2023.08.17 |
[BOJ] 3052번 - 나머지 (0) | 2023.08.16 |
[BOJ] 5597번 - 과제 안 내신 분..? (0) | 2023.08.16 |
[BOJ] 10813번 - 공 바꾸기 (0) | 2023.08.16 |