Content deleted Content added
Tag: repeating characters |
ClueBot NG (talk | contribs) m Reverting possible vandalism by 50.203.233.234 to version by 2600:100A:B12E:43C9:0:2A:5753:8101. Report False Positive? Thanks, ClueBot NG. (2699262) (Bot) |
||
Line 83:
if (recursiveSolve(x, y-1)) { // Recalls method one up
correctPath[x][y] = true;
return true;
}
if (y != height- 1) // Checks if not on bottom edge
if (recursiveSolve(x, y+1)) { // Recalls method one down
correctPath[x][y] = true;
return true;
}
return false;
|