반응형
https://leetcode.com/problems/divisor-game/description/
구현 문제였습니다.
📕 풀이방법
📔 풀이과정
0 < x < n 며 n의 인수 x 중에서 최적으로 정답을 고르는 경우는 1을 고르는 것입니다.서로 1을 고르게 된다면 최종적으로 1이 남으면 그 사람이 지므로 짝수인 경우 첫 번째 사람이 이기며 홀수인 경우 두 번째 사람이 이기게 됩니다.
📔 정답 출력 | 반환
n의 짝수 여부를 반환합니다.
📕 Code
📔 C++
class Solution {
public:
bool divisorGame(int n) {
return n % 2 == 0;
}
};
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > Math' 카테고리의 다른 글
(C++) - LeetCode (easy) 1207. Unique Number of Occurrences (0) | 2023.12.07 |
---|---|
(C++) - LeetCode (easy) 1037. Valid Boomerang (0) | 2023.10.13 |
(C++, Rust) - LeetCode (easy) 914. X of a Kind in a Deck of Cards (0) | 2023.08.30 |
(C++) - LeetCode (easy) 367. Valid Perfect Square (0) | 2023.02.23 |
(C++) - LeetCode (easy) 231. Power of Two (2) | 2023.01.17 |