class Solution {
public String[] solution(String[] quiz) {
String[] answer = new String[quiz.length];
for(int i = 0; i < answer.length; i++) {
String[] arr = quiz[i].split(" ");
if(arr[1].equals("+")) {
if(Integer.parseInt(arr[0]) + Integer.parseInt(arr[2]) == Integer.parseInt(arr[4])) {
answer[i] = "O";
} else {
answer[i] = "X";
}
} else {
if(Integer.parseInt(arr[0]) - Integer.parseInt(arr[2]) == Integer.parseInt(arr[4])) {
answer[i] = "O";
} else {
answer[i] = "X";
}
}
}
return answer;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 평행 (0) | 2023.02.07 |
---|---|
[프로그래머스] 다항식 더하기 (0) | 2023.02.07 |
[프로그래머스] 저주의 숫자 3 (0) | 2023.02.06 |
[프로그래머스] 등수 매기기 (0) | 2023.02.06 |
[프로그래머스] 이진수 더하기 (0) | 2023.02.05 |