This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// sudoku | |
/* | |
Arquivo: STNIN_sudoku.c | |
Autor: STNIN | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
//------------------------------------------------------------------------------------- | |
#define LINHA 99 | |
#define COLUNA 99 | |
#define PAREDES -1 | |
#define SOBREVIVENTE 1 | |
#define MORTO 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
//------------------------------------------------------------------------------------- | |
#define LINHA 99 | |
#define COLUNA 99 | |
#define PAREDES -1 | |
#define SOBREVIVENTE 1 | |
#define MORTO 0 |