블로그를 이전하였습니다. 2023년 11월부터 https://bluemiv.github.io/에서 블로그를 운영하려고 합니다. 앞으로 해당 블로그의 댓글은 읽지 못할 수 도 있으니 양해바랍니다.
반응형
문제의 저작권은 백준 알고리즘(https://www.acmicpc.net/)에 있습니다
문제
풀이
입력 받은 두 값을 더한 뒤에 Case#1: 2 형태에 맞게 출력해주면 되는 간단한 문제이다.
문제를 깔끔하게 풀기위해 reduce
를 이용하여 합을 구하고 문자 템플릿`Case #${idx + 1}: ${n}`
을 사용했다
const solution = (input) =>
input
.slice(1, input[0] + 1)
.map((s) => s.split(' ').reduce((acc, n) => acc + +n, 0))
.map((n, idx) => `Case #${idx + 1}: ${n}`)
.join('\n');
const input = [];
require('readline')
.createInterface({ input: process.stdin })
.on('line', (line) => input.push(line))
.on('close', (_) => {
console.log(solution(input));
process.exit(0);
});
전체 코드
https://github.com/bluemiv/Algorithm/blob/master/baekjoon/nodejs/src/ex11/ex11021.js
풀이 결과
관련 글
2022.07.21 - [Algorithm/Beakjoon] - jest 단위테스트를 이용하여 백준 알고리즘 문제 편하게 풀기
반응형
'Algorithm > Beakjoon' 카테고리의 다른 글
백준 2438번 / 별 찍기 - 1 (nodejs 알고리즘 풀이) (0) | 2022.08.02 |
---|---|
백준 11022번 / A+B - 8 (nodejs 알고리즘 풀이) (0) | 2022.08.01 |
백준 2742번 / 기찍 N (nodejs 알고리즘 풀이) (0) | 2022.07.30 |
백준 2741번 / N 찍기 (nodejs 알고리즘 풀이) (0) | 2022.07.29 |
백준 15552번 / 빠른 A+B (nodejs 알고리즘 풀이) (0) | 2022.07.28 |