
문제 1 / ReverseSentence-목표 : 괄호의 순서에 따라 정수를 반환하는 프로그램 구현 최종 코드class Solution { public String[] solution(String s) { String[] answer = {}; String replace = "[.,!?]"; String[] word = s.split("[ ,]+"); String[] temp = new String[word.length]; int index = 0; for(String w : word){ if(w.length() > 0){ StringBuilder sb = new StringBu..