Post

대소문자 바꿔서 출력하기

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

📔 문제 설명

영어 알파벳으로 이루어진 문자열 str이 주어집니다. 각 알파벳을 대문자는 소문자로 소문자는 대문자로 변환해서 출력하는 코드를 작성해 보세요.

💡 입출력 예

입력출력
aBcDeFgAbCdEfG

💻내가 작성한 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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];

  console.log(
    str
      .split("")
      .map((element) =>
        element.toUpperCase() === element
          ? element.toLowerCase()
          : element.toUpperCase()
      )
      .join("")
  );
});
This post is licensed under CC BY 4.0 by the author.