Post

문자열 돌리기

https://school.programmers.co.kr/learn/courses/30/lessons/181945

📔 문제 설명

문자열 str이 주어집니다.
문자열을 시계방향으로 90도 돌려서 아래 입출력 예와 같이 출력하는 코드를 작성해 보세요.

💡 입출력 예

1
2
3
4
5
a
b
c
d
e

💻내가 작성한 코드

for문 사용해서 console.log()로 출력하기

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const readline = require("readline");
const rl = readline.createInterface({
  input: process.stdin,
  output: process.stdout
});

let input = [];

rl.on("line", function (line) {
  input = [line];
}).on("close", function () {
  str = input[0];
  for (let i = 0; i < str.length; i++) {
    console.log(str[i]);
  }
});
This post is licensed under CC BY 4.0 by the author.