What is going on here? 2048

Feb 12, 2019 at 12:19am
I have made a function called game_over which returns a boolean based on whether a grid representing a 2048 game is in a game over situation. If it is it returns false if it is not it would return true.

The function works perfectly except in one situation where there is one zero left it would return true and I can not figure out why this is. It should if there is a zero return false as it goes into the first for loop which checks if there is a zero. What is going on here?
Last edited on Feb 12, 2019 at 12:56am
Feb 12, 2019 at 12:40am
(On line 5) you are only checking the first sqrt(n) elements in the vector. Is this intended?
Last edited on Feb 12, 2019 at 12:41am
Feb 12, 2019 at 12:42am
@mbozzi

Thank you for your reply. I am using a function called twod_to_oned which allows me to used 2D indices on a vector as you can see above. Using this I am able to locate numbers in the vector using their row and coloumn index.
Feb 12, 2019 at 12:44am
Why don't you just use a 2D vector?

1
2
3
4
5
6
std::vector<std::vector<int>> grid = {
    { 1, 0, 0, 1 },
    { 0, 1, 1, 0 },
    { 1, 1, 1, 1 },
    { 1, 0, 1, 1 }
};

And you are only checking a single "row" in your fake 2D matrix for zeroes. You should check up to v.size().
Last edited on Feb 12, 2019 at 12:45am
Feb 12, 2019 at 12:46am
@dutch Than you for your reply.

The requirements for the task permits me from doing this, otherwise I would have. Regardless, these two functions should be working but it is very confusing why it is not.
Feb 12, 2019 at 12:48am
If it is working with all other values except in the last part when there is only one zero left this could mean that there is some error with my other functions?
Feb 12, 2019 at 12:49am
Did you fix the zero checking by making it go up to v.size()?
Feb 12, 2019 at 12:53am
@dutch Thank you for your reply.

How could I not see that error. I have spent the last 7 hours trying to sort this issue out. Thank you.
Feb 12, 2019 at 12:59am
That's what mbozzi meant with his post, too. :-)
Topic archived. No new replies allowed.