본문 바로가기

Algorithm/Math

(C++) - LeetCode (easy) 1025. Divisor Game

반응형

https://leetcode.com/problems/divisor-game/description/

 

LeetCode - The World's Leading Online Programming Learning Platform

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

구현 문제였습니다.

📕 풀이방법

📔 풀이과정

0 < x < n 며 n의 인수 x 중에서 최적으로 정답을 고르는 경우는 1을 고르는 것입니다.서로 1을 고르게 된다면 최종적으로 1이 남으면 그 사람이 지므로 짝수인 경우 첫 번째 사람이 이기며 홀수인 경우 두 번째 사람이 이기게 됩니다.

📔 정답 출력 | 반환

n의 짝수 여부를 반환합니다.


📕 Code

📔 C++

class Solution {
public:
    bool divisorGame(int n) {
        return n % 2 == 0;
    }
};

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.