35. 다트 게임 class Solution { public int solution(String dartResult) { int answer = 0; int[] scores = new int[3]; int n = 0, idx = 0; String numStr = ""; for(int i=0; i= '0' && ch = 0) scores[idx-2] *= 2; } else{ scores[idx-1] *= -1; } } } answer = scores[0] + scores[1] + scores[2]; return answer; } } 점수를 저장할 배열 scores를 만들어줬다. 그리고 정수형 변수 n을 만들어두고 인덱스값을 담당할 idx변수를 각각 0으로 초기화해 줬다. 또한 문자열 변수 numStr을 만..