Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alonski/literate-carnival
https://github.com/alonski/literate-carnival
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/alonski/literate-carnival
- Owner: Alonski
- License: mit
- Created: 2019-05-21T18:37:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-24T14:42:32.000Z (over 5 years ago)
- Last Synced: 2024-10-31T00:12:34.490Z (2 months ago)
- Language: C
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sudoku Threads Checker
Created by Avihai Adler and Alon Bukai
## Two Sudoku Checker Implementations
### Threads
### Threads Mutex
## Instructions to Build
To build this project a *Makefile* is included.
Just run `make` in your terminal.
## Instructions to Run
This project can be supplied a 9x9 matrix separated by spaces and line breaks as a file passed as an argument.
If a file is not passed as an argument then the matrix can be inputted from the terminal.An example to run the *Threads* program:
```
./v1 tests/demo.txt
```
The above should print: `solution is legal`An example to run the *Threads* program:
```
./v2 tests/wrong1
```
The above should print: `solution is not legal`