Use strings instead of ints to store blocks (Closes #23)

This commit is contained in:
2025-01-28 01:59:36 +01:00
parent 647476f6d8
commit 2735074515
5 changed files with 30 additions and 62 deletions

View File

@ -3,7 +3,7 @@ package controller
// Simple interface to store values shared amongst packages.
type Controller struct {
// All possible blocks/rows available
Blocks []int
Blocks []string
// 1st row of the Sudoku puzzle.
Row1 string
// 2nd row of the Sudoku puzzle.