Don Page

I enjoy growing software and experiencing life.

Sudoku Program in C++

Sudoku is a logic-based game/puzzle. The goal is to fill a 9×9 grid so that each column, each row, and each of the nine 3×3 boxes (blocks) has the digits from 1 to 9 only one time each. The puzzle starts out as a partially filled grid. I explain how to solve this board using c++.