Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 527 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 527 Bytes

Sudoku Solution Validator

C# Console Application

This C# application utilizes data-structures and algorithms to evaluate a completed Sudoku Solution and determine whether it is a valid solution. It will return “True” if it is a valid solution or “False” if it is not.

Sudoku is a game played on a 9x9 grid. The goal of the game is to fill all cells of the grid with digits from 1 to 9, so that each column, each row, and each of the nine 3x3 sub-grids (also known as blocks) contain all the digits from 1 to 9.