First pass at a sudoku solver: Puzzle Import
Imports a puzzle from a string and displays the restricted puzzle.
This commit is contained in:
commit
bcc5b5097e
8 changed files with 179 additions and 0 deletions
14
CMakeLists.txt
Normal file
14
CMakeLists.txt
Normal 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})
|
||||
Loading…
Add table
Add a link
Reference in a new issue