You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🔥 Nim Game 🔥 || || 3 Approaches Simple Fast and Easy || with Explanation
Solution - 1
classSolution {
boolcanWinNim(int n) {
// if the remainder is not 0 because if there is remainder than nim will winreturn n %4!=0;
}
}
Solution - 2 Recursive
classSolution {
boolcanWinNim(int n) {
// if the number is less than zero or equal nothing to do hereif (n <=0) returnfalse;
// because we can pick 0-3 pick one time so trueif (n ==1|| n ==2|| n ==3) returntrue;
// recursive to see after picking 0,1,2,3 if there is something left we lostif (canWinNim(n -1) &&canWinNim(n -2) &&canWinNim(n -3)) returnfalse;
returntrue;
}
}
Solution - 3
classSolution {
boolcanWinNim(int n) {
if (n >=134882061) return n %4!=0;
bool result =true;
bool first =true;
bool second =true;
bool third =true;
for (int i =4; i <= n; i++) {
result = (first && second && third) ?false:true;
first = second;
second = third;
third = result;
}
return result;
}
}