UNPKG

create-bananass

Version:

Create a Bananass framework project for solving Baekjoon problems with JavaScript/TypeScript.🍌

10 lines (6 loc) 190 B
import type { Input, Output } from 'bananass'; function solution(input: Input): Output { const [A, B] = input.trim().split('\n').map(Number); return A + B; } export default solution;