Leetcode Note: Go - Divisor Game

Divisor Game - LeetCode
https://leetcode.com/problems/divisor-game/

  • Go 言語で取り組んだメモ

回答

func divisorGame(n int) bool {
    return n % 2 == 0
}