package leetcode func divisorGame(N int) bool { return N%2 == 0 }