본문 바로가기
Development/코딩테스트

[백준] 2675 Node.js

by Yeony99 2022. 9. 21.
728x90
const T = Number(input.shift());

for(let i = 0; i < T; i++) {
    let result = "";
    const [num, str] = input[i].split(" ");
    for(let j = 0; j < str.length; j++) {
        result += str[j].repeat(Number(num))
    }
    console.log(result)
}
728x90

'Development > 코딩테스트' 카테고리의 다른 글

[백준] 8958 Node.js  (0) 2022.09.21
[백준] 2920 Node.js  (0) 2022.09.21
[백준] 10757 Node.js  (0) 2022.09.21
[백준] 14623 Node  (0) 2022.09.20
[백준] 2480 Node.js  (0) 2022.09.20

댓글