카일_

Algorithm

Algorithm/백준

백준 | #2753 "윤년"

문제 나의 풀이 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; let input = fs.readFileSync(filePath).toString(); if ((input % 4 == 0 && (input % 100 != 0) || input % 400 == 0)) { console.log(1); } else { console.log(0); } 마무리 윤년일 경우 1을, 윤년이 아닐 경우 0을 출력하는 문제였다. 윤년의 조건은 다음과 같다. 연도가 4의 배수 일때 연도가 100의 배수가 아닐 때 또는 400의 배수일 때 윤년의 조건만 잘 읽으면 if조건문 과 논리 연산..

Algorithm/백준

백준 | #10171 "고양이"

문제 나의 풀이 console.log(`\\ /\\\n ) ( \')\n( / )\n \\(__)|\n`); 마무리 줄바꿈을 \n 을 통해 출력하는 간단한 문제였다.

Algorithm/프로그래머스

프로그래머스 | #Lv1 "폰켓몬"

문제 설명 당신은 폰켓몬을 잡기 위한 오랜 여행 끝에, 홍 박사님의 연구실에 도착했습니다. 홍 박사님은 당신에게 자신의 연구실에 있는 총 N 마리의 폰켓몬 중에서 N/2마리를 가져가도 좋다고 했습니다. 홍 박사님 연구실의 폰켓몬은 종류에 따라 번호를 붙여 구분합니다. 따라서 같은 종류의 폰켓몬은 같은 번호를 가지고 있습니다. 예를 들어 연구실에 총 4마리의 폰켓몬이 있고, 각 폰켓몬의 종류 번호가 [3번, 1번, 2번, 3번]이라면 이는 3번 폰켓몬 두 마리, 1번 폰켓몬 한 마리, 2번 폰켓몬 한 마리가 있음을 나타냅니다. 이때, 4마리의 폰켓몬 중 2마리를 고르는 방법은 다음과 같이 6가지가 있습니다. 첫 번째(3번), 두 번째(1번) 폰켓몬을 선택 첫 번째(3번), 세 번째(2번) 폰켓몬을 선택 첫..

Algorithm/백준

백준 | #10172 "개"

문제 나의 풀이 console.log(`|\\_/|\n|q p| /}\n( 0 )\"\"\"\\\n|\"^\"\` |\n||_/=\\\\__|\n`); 마무리 앞서 푼 고양이와 다르게 큰따옴표" 작은따옴표' 백슬래시\ 같은 다양한 기호들이 있어 출력에 주의해야 했다. 위의 기호들을 출력하기 위해서는 백슬래시\를 앞에 추가해서 출력하면 된다. 아래는 백슬래시\ 로 텍스트 문자열에 추가 할 수 있는 특수 문자들 목록이다. CodeOutputs \' single quote \" double quote \ backslash \n new line \r carriage return \t tab \b backspace \f form feed

Algorithm/백준

백준 | #1008 "A/B"

문제 나의 풀이 const fs = require("fs"); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; let input = fs.readFileSync(filePath).toString().split("\n"); input = input[0]; input = input.split(" ").map((item) => +item); console.log(input[0] / input[1]); 마무리 숫자배열로 변환해서 풀이하는 간단한 사칙연산 문제였다.

Algorithm/백준

백준 | #1001 "A-B"

문제 나의 풀이 const fs = require("fs"); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; let input = fs.readFileSync(filePath).toString().split("\n"); input = input[0]; input = input.split(" ").map((item) => +item); console.log(input[0]-input[1]); 마무리 1000번 문제와 동일한 방식의 사칙연산 문제였다.

Algorithm/백준

백준 | #3003 "킹, 퀸, 룩, 비숍, 나이트, 폰"

문제 나의 풀이 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; let input = fs .readFileSync(filePath) .toString() .trim() .split(' ') .map(Number); //숫자 배열로 만들기 //검정색 체스 개수 배열 생성 const blackNum = [1, 1, 2, 2, 2, 8]; // blackNum 각 요소에서 inputData값의 요소들을 빼줌. const result = blackNum.map((el, idx) => el - input[idx]); // console.log(result); [ -1, 0, 0..

Algorithm/백준

백준 | #1000 "A+B"

문제 나의 풀이 const fs = require("fs"); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; let input = fs.readFileSync(filePath).toString().split("\n"); input = input[0]; input = input.split(" ").map((item) => +item); console.log(input[0]+input[1]); 마무리 입력 값을 받아 배열형태로 변경하고 map메소드를 통해 String을 Number로 변환해서 연산해서 해결했다.

Algorithm/백준

백준 | #2557 "Hello Wolrd"

문제 나의 풀이 console.log("Hello World!"); 마무리 입력 값이 없는 간단한 출력 문제였다.

Algorithm/백준

BOJ | #1300 "두 수 비교하기"

문제 나의 풀이 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; const input = fs .readFileSync(filePath) .toString() .trim() .split(' ') .map(Number); const A = input[0]; const B = input[1]; if (A > B) { console.log('>'); } else if (A < B) { console.log('