class Solution {
public int solution(int[] dot) {
if(dot[0]>0 && dot[1]>0) return 1;
else if(dot[0]<0 && dot[1]>0) return 2;
else if(dot[0]<0 && dot[1]<0) return 3;
else return 4;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 숫자 문자열과 영단어 (0) | 2023.03.13 |
---|---|
[프로그래머스/자바] 없는 숫자 더하기 (0) | 2023.03.13 |
[프로그래머스/자바] 중복된 숫자 개수 (0) | 2023.03.09 |
[프로그래머스/자바] 배열 원소의 길이 (0) | 2023.03.08 |
[프로그래머스/자바] 개미 군단 (0) | 2023.03.07 |