# [JAVA] 편지

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

---

### ◇ 내 답변

```
class Solution {
    public int solution(String message) {
        int answer = 0;
        
        for (int i = 0; i < message.length(); i++) {
            answer += 2;
        }
        
        return answer;
    }
}
```

For the site tree, see the [root Markdown](https://slashpage.com/%EB%AC%B4%EB%91%A5-rypb2.md).
