Level
LeetCode Easy
Recruitment
// 홀-홀 = 짝 짝-홀 = 홀
var divisorGame = function (N) {
  return N % 2 === 0;
};