Saved from https://leetcode-cn.com/problems/divisor-game/submissions/
func divisorGame(N int) bool { return (N&1)==0 }