티스토리 뷰

알고리즘/백준 문제풀이

백준 nodejs 10809번: 알파벳 찾기

YG - 96년생 , 강아지 있음, 개발자 희망 2021. 8. 27. 12:00

const fs = require("fs");

const filePath = process.platform === "linux" ? "./input.txt" : "/dev/stdin"; //제 개발환경은 리눅스이기에 input.txt를 앞에 두었습니다.

// const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; // 실제 백준사이트에 제출할 때는 위에 filePath를 삭제하고 이 부분을 입력하면 됩니다.

let input = fs.readFileSync(filePath).toString();

//console.log(input);

solution(input); //받는 값이 3개입니다

function solution(A) {
  const Arr = Array.from({ length: 26 }, (v, i) => String.fromCharCode(i + 97));
  //console.log(Arr);
  //console.log("a".charCodeAt());
  for (let i = 0; i < 26; i++) {
    console.log(A.indexOf(Arr[i])); //  indexOf는 A의 입력값 : beakjoon .에서의 Arr[i] = a,b,c,de ... 알파벳이 존재한다면 존재하는 곳의 위치. 순서 를 알려주고 없다면 -1을 출력한다
    //console.log(Arr.indexOf(A[i]));
  }
}

댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
글 보관함