본문 바로가기
코딩 테스트/leetcode

Divisor Game

by ornni 2024. 6. 24.
728x90
반응형

첫번째 코드

 

생각해보면 짝수인 경우는 Alice의 승리, 홀수인 경우에는 Bob의 승리이다.

 

class Solution:
    def divisorGame(self, n: int) -> bool:
        if n % 2 == 0:
            return True
        else:
            return False

 

통과!


링크

https://github.com/ornni/leetcode/tree/main/1025-divisor-game

 

leetcode/1025-divisor-game at main · ornni/leetcode

Collection of LeetCode questions to ace the coding interview! - Created using [LeetHub v3](https://github.com/raphaelheinz/LeetHub-3.0) - ornni/leetcode

github.com

 

반응형

'코딩 테스트 > leetcode' 카테고리의 다른 글

Removing Stars From a String  (0) 2024.06.26
Shuffle the Array  (0) 2024.06.25
Split a String in Balanced Strings  (0) 2024.06.22
Find Words Containing Character  (0) 2024.06.21
Count Negative Numbers in a Sorted Matrix  (0) 2024.06.20