20. Matchsticks Game
The problem can be found at the following link: Question Link
My Approach
To solve the matchsticks game, I have used the following approach:
It is observed that if the number
nis a multiple of5, then playerBwill win because playerAwill have to pick the last matchstick and playerBwill always have a winning move.Otherwise, if
nis not a multiple of5, playerAwill choose a number equal ton%5to ensure their victory. This way, playerAcan force playerBinto a losing position by making the remaining number a multiple of5in the next turn.
Time and Auxiliary Space Complexity
Time Complexity:
O(1)because the calculations are performed in constant time.Auxiliary Space Complexity:
O(1)as we are not using any extra space that scales with the input.
Code (C++)
class Solution {
public:
int matchGame(long long n) {
if(n % 5)
return n % 5;
return -1;
}
};Contribution and Support
For discussions, questions, or doubts related to this solution, please visit our discussion section. We welcome your input and aim to foster a collaborative learning environment.
If you find this solution helpful, consider supporting us by giving a ⭐ star to the getlost01/gfg-potd repository.
Last updated
Was this helpful?