프로그래머스 120841 점의 위치 구하기

1 개요[ | ]

프로그래머스 120841 점의 위치 구하기

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(vector<int> dot) {
    if(dot[0]>0) {
        if(dot[1]>0) return 1;
        return 4;
    }
    if(dot[1]>0) return 2;
    return 3;
}