본문 바로가기
(문제풀이)

프로그래머스 (java) : 편지

by cogito-new 2022. 10. 9.

 

class Solution {
    public int solution(String message) {
        int answer = 0;
        
        answer = message.length() * 2;
        
        
        
        return answer;
    }
}
반응형