Search posts...
class Solution { public String solution(String[] arr) { StringBuilder answer = new StringBuilder(); for (String s : arr) { answer.append(s); } return answer.toString(); } }
gunwoo