Skip to content
Snippets Groups Projects
Commit fb8003ee authored by DamianKomdeur's avatar DamianKomdeur
Browse files

Subclass change

Not a subclass from binary anymore since in the end I didn't use any of those methods.
parent 797ece09
No related branches found
No related tags found
No related merge requests found
......@@ -7,11 +7,10 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar;
namespace PuzzlePlayer_Namespace
{
internal class Sudoku : Binary
internal class Sudoku : Board
{
private static int boardLength;
private static int rootBoardLength;
......@@ -280,5 +279,12 @@ namespace PuzzlePlayer_Namespace
}
}
protected override List<Move> GetSolveList(int[,] boardToSolve)
{
List<Move> result = new List<Move>();
return result;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment