Skip to content

292-nim-game

DevGod
DevGod
Vtuber
bool canWinNim(int n) {
if(n%4 == 0){return false;}
return true;
}