Skip to content

1025-divisor-game

DevGod
DevGod
Vtuber
/**
* @param {number} n
* @return {boolean}
*/
var divisorGame = function(n) {
return (n%2==0);
};