Post

편지

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

📔 문제 설명

머쓱이는 할머니께 생신 축하 편지를 쓰려고 합니다. 할머니가 보시기 편하도록 글자 한 자 한 자를 가로 2cm 크기로 적으려고 하며, 편지를 가로로만 적을 때, 축하 문구 message를 적기 위해 필요한 편지지의 최소 가로길이를 return 하도록 solution 함수를 완성해주세요.

💡 입출력 예

messageresult
“happy birthday!”30
“I love you~”22

💻내가 작성한 코드

1
2
3
function solution(message) {
  return message.length * 2;
}
This post is licensed under CC BY 4.0 by the author.