BOJ 2675

슬기로운 FE 세상·2022년 3월 19일
0

let input = require("fs").readFileSync("./input.txt").toString().split("\n");

const num = input.shift();

for (let i = 0; i < num; i++) {
  let result = "";

  const [key, val] = input[i].split(" ");
  for (let j = 0; j < val.length; j++) {
      result += val[j].repeat(key);
  }
  console.log(result);
}

split(' ')을 기준으로 key, val로 나눈 후 repeat 메서드를 통해 key 만큼 반복해서 출력

profile
자 드가자~~

0개의 댓글

관련 채용 정보