You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
867 B
Markdown

# Sudoku
Ce défi consiste à résoudre des grilles de sudoku.
Comme ça:
```console
$ cat ./path/to/map.txt
9 years ago
+-----------------+
|2 4 6 9|
|1 6 4 |
| 4 7 |
| 3 8 5 |
|8 1 2 |
|9 |
| 7 1 2|
| 2 3 4|
9 years ago
|5 2 |
9 years ago
+-----------------+
$ ./sudoku ./path/to/map.txt
9 years ago
+-----------------+
|2 5 8 3 7 4 1 6 9|
|1 7 9 5 8 6 2 4 3|
|3 4 6 2 9 1 7 8 5|
|7 2 4 6 3 9 8 5 1|
|8 1 5 4 2 7 9 3 6|
|9 6 3 8 1 5 4 2 7|
|4 3 7 1 6 8 5 9 2|
|6 8 1 9 5 2 3 7 4|
|5 9 2 7 4 3 6 1 8|
+-----------------+
$
```
## Winners
9 years ago
1. [@zigazou](https://github.com/zigazou): `2015/11/17 21:53:43`
2. [@gnieark](https://github.com/gnieark): `2015/11/17 21:54:08`
2. [@xxx](https://github.com/xxx): `date`
Hors jeu (créateur du challenge):
9 years ago
- [@moul](https://github.com/moul): `2015/11/17 00:08:48`