코딩테스트/프로그래머스 Lv.0
[코테/0레벨] 편지
moca7
2025. 2. 3. 00:09
ㅁ 내 풀이
class Solution {
public int solution(String message) {
return 2*message.length();
}
}