[c++/해커랭크] Find the Point

조히·2023년 5월 30일
0

PS

목록 보기
72/82

문제 링크

Find the Point

풀이

pq의 입력을 받고 q를 기준으로 p를 180도 회전하는 문제
q값에 qp의 차이를 더해주면 됨

코드

vector<int> findPoint(int px, int py, int qx, int qy) {
    vector<int> result;
    
    result.push_back(qx+qx-px);
    result.push_back(qy+qy-py);
    
    return result;
}
profile
Juhee Kim | Game Client Developer

0개의 댓글