You are viewing a single comment's thread. Return to all comments →
Shouldn't the order be like below to finish the game quickly?.
/* Recursive Cases */ return solvable(array, m, i + m) || solvable(array, m, i + 1) || solvable(array, m, i - 1);
Seems like cookies are disabled on this browser, please enable them to open this website
Java 1D Array (Part 2)
You are viewing a single comment's thread. Return to all comments →
Shouldn't the order be like below to finish the game quickly?.