BOJ 10809

슬기로운 FE 세상·2022년 3월 19일
0
post-thumbnail

const input = require("fs")
  .readFileSync("./input.txt")
  .toString()
  .trim()

const result = [];

for (let i = 97; i <= 122; i++) {
    result.push(input.indexOf(String.fromCharCode(i)))
}

console.log(result.join(' '))

input값을 아스키코드로 변환한 후, indexOf를 통하여 존재하지 않으면 -1, 존재한다면 index 번호 출력

profile
자 드가자~~

0개의 댓글

관련 채용 정보