https://github.com/bcanozter/multithreaded-sudoku-checker
9x9 Sudoku Checker
https://github.com/bcanozter/multithreaded-sudoku-checker
computer-engineering computer-science cpp multithreading sudoku-checker
Last synced: 3 months ago
JSON representation
9x9 Sudoku Checker
- Host: GitHub
- URL: https://github.com/bcanozter/multithreaded-sudoku-checker
- Owner: bcanozter
- License: gpl-3.0
- Created: 2019-06-19T05:55:31.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-19T07:23:51.000Z (almost 6 years ago)
- Last Synced: 2023-03-11T07:53:28.961Z (about 2 years ago)
- Topics: computer-engineering, computer-science, cpp, multithreading, sudoku-checker
- Language: C++
- Homepage:
- Size: 22.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Table of contents
* [General info](#general-info)
* [Technologies](#technologies)
* [Compiling](#compiling)
* [Preview](#preview)
* [Author](#author)## General info
A multithreaded Sudoku Solution Checker program that accepts a Sudoku solution from the user as input,
and determines whether the solution is valid or invalid.
This sudoku solution checker is using 9 threads to check each subgrid and 2 threads to check each row and
column.
The program is also able to determine which row or column has an error and returns number.
## Technologies
Project is created with:
* XCode version: 10.2.1## Compiling
To compile this software you must use a gcc terminal.
1. Open the bash terminal
2. To compile, $ g++ --std=c++11 -o run.out main.cpp
3. To run, ./run.out## Preview
## Author
* Burak Can Ozter
* [email protected]