djasek12 / sudoku-puzzle

Interactive sudoku game for C++ class

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sudoku-puzzle

This is a sudoku program for my Fundamentals of Computing II class. The user can either solve the puzzle manually or use the AI to solve it. The AI works by first using a "scanning" algorithm - playing a move if it is the only possible move for that square. The AI then finishes harder puzzles by using a "singleton" algorithm - playing a move if no other square in the row, column, or mini-grid can make the same move.

BUILD

% make

RUN

% ./main

CLEAN

% make clean

About

Interactive sudoku game for C++ class


Languages

Language:C++ 99.0%Language:Makefile 1.0%