Skip to content

11718. 그대로 출력하기

🚧 This document is a work in progress! 🚧

This document is currently under construction and will be updated soon.

Solutions

js
const testcases = [
  {
    input: `Hello
Baekjoon
Online Judge`,
    output: `Hello
Baekjoon
Online Judge`,
  },
];

function solution(input) {
  return input;
}

export default { testcases, solution };
js
const testcases = [
  {
    input: `Hello
Baekjoon
Online Judge`,
    output: `Hello
Baekjoon
Online Judge`,
  },
];

function solution(input) {
  return input;
}

module.exports = { testcases, solution };
ts
import type { Testcases, Input, Output } from 'bananass';

const testcases = [
  {
    input: `Hello
Baekjoon
Online Judge`,
    output: `Hello
Baekjoon
Online Judge`,
  },
] satisfies Testcases;

function solution(input: Input): Output {
  return input;
}

export default { testcases, solution };
ts
import type { Testcases, Input, Output } from 'bananass';

const testcases = [
  {
    input: `Hello
Baekjoon
Online Judge`,
    output: `Hello
Baekjoon
Online Judge`,
  },
] satisfies Testcases;

function solution(input: Input): Output {
  return input;
}

module.exports = { testcases, solution };

Explanation