Search posts...
class Solution { public int solution(String message) { int answer = 0; answer = message.length() * 2; return answer; } }
goho