First pass at a sudoku solver: Puzzle Import

Imports a puzzle from a string and displays the restricted puzzle.
This commit is contained in:
Drew Galbraith 2023-04-17 16:31:47 -07:00
commit bcc5b5097e
8 changed files with 179 additions and 0 deletions

14
CMakeLists.txt Normal file
View file

@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 3.26)
project(Sudoku)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(SOURCE_FILES
solver/cell.cpp
solver/puzzle.cpp
solver.cpp
)
add_executable(solver ${SOURCE_FILES})