mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-07 01:44:56 +08:00
6 lines
68 B
Go
6 lines
68 B
Go
package leetcode
|
|
|
|
func divisorGame(N int) bool {
|
|
return N%2 == 0
|
|
}
|