https://github.com/sameetasadullah/validate-sudoku-using-threads
C++ program to check whether the given sudoku puzzle is valid or not. It uses threads, joins, and semaphores to do that
https://github.com/sameetasadullah/validate-sudoku-using-threads
cpp linux semaphores sudoku-checker thread-joining threads ubuntu
Last synced: 4 months ago
JSON representation
C++ program to check whether the given sudoku puzzle is valid or not. It uses threads, joins, and semaphores to do that
- Host: GitHub
- URL: https://github.com/sameetasadullah/validate-sudoku-using-threads
- Owner: SameetAsadullah
- License: mit
- Created: 2022-08-08T13:46:13.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-08T13:48:49.000Z (almost 3 years ago)
- Last Synced: 2025-01-21T17:51:03.527Z (6 months ago)
- Topics: cpp, linux, semaphores, sudoku-checker, thread-joining, threads, ubuntu
- Language: C++
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Validate Sudoku Using Threads
### Description
`C++ Program` to check whether the given sudoku puzzle is `Valid or not`. It uses threads, joins, and semaphores to do that.### Manual
1) Use the following command to `Compile the Code`:
```
g++ main.cpp
```2) Use the following command to `Run the Code`:
```
./a.out
```