Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-08T13:48:49.000Z (over 2 years ago)
- Last Synced: 2023-03-10T20:47:08.294Z (almost 2 years ago)
- Topics: cpp, linux, semaphores, sudoku-checker, thread-joining, threads, ubuntu
- Language: C++
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- 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
```