sudoku/README.md
2013-10-18 23:10:07 +02:00

30 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#Sudoku
##Genera e risolve sudoku in C
### Informazioni
Semplice programma in c che risolve uno schema sudoku inserito o ne genera uno e ti fa giocare.
L'output è a colori grazie alle sequenze di escape ANSI.
Per visualizzare decentemente il testo è necessario un terminale compatibile.
Su Windows si può usare [ANSIcon](http://github.com/adoxa/ansicon) che ripristina il supporto al driver ANSI.SYS per le console Win32.
### Compilazione
Per compilare il programma su UNIX usa _make_.
Su windows usa un compilatore qualisasi o _mingw32-make_ se hai [MinGW](http://www.mingw.org).
### Istruzioni
Le istruzioni su come giocare sono cotenute nel programma stesso.
### Avvisi
Se provando a compilare ricevi avvisi del tipo:
warning: implicit declaration of function getch
warning: implicit declaration of function kbhit
oppure:
warning: implicit declaration of function mgetchar
è perchè stai compilando rispettivamente su UNIX o su Windows e queste funzioni vengono sostituite dalle loro controparti per quel sistema dato che non sono portabili. Anche se sono nel sorgente e nel file oggetto non verranno mai eseguite.