Search posts...
class Solution { public int solution(String message) { int answer = message.length() * 2; // 문자열 길이값 * 2 return answer; } }
stupefyee