Implementing hashing capabilities to the Board class.

This commit is contained in:
Jonathan Turner 2024-02-03 11:50:13 -05:00
parent a264075c1f
commit 56294257de

View File

@ -0,0 +1,8 @@
package Assignments.A1.resources;
public class Constants {
/* Used to prevent DFS from going down only 1 branch */
public static final int MAX_DEPTH = 100;
}