Skip to content

Instantly share code, notes, and snippets.

View blastin's full-sized avatar
🏠
Working from home

Jefferson Lisboa blastin

🏠
Working from home
  • São Paulo, Brasil
View GitHub Profile
@blastin
blastin / sudoku.c
Created August 16, 2017 00:08 — forked from thiagoyuji/sudoku.c
// sudoku
/*
Arquivo: STNIN_sudoku.c
Autor: STNIN
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@blastin
blastin / jogo_da_vida.c
Created November 9, 2016 13:25 — forked from juliosnovaes/jogo_da_vida.c
Jogo da Vida - Grupo 1
#include <stdio.h>
#include <stdlib.h>
//-------------------------------------------------------------------------------------
#define LINHA 99
#define COLUNA 99
#define PAREDES -1
#define SOBREVIVENTE 1
#define MORTO 0
@blastin
blastin / jogo_da_vida.c
Created November 9, 2016 13:25 — forked from juliosnovaes/jogo_da_vida.c
Jogo da Vida - Grupo 1
#include <stdio.h>
#include <stdlib.h>
//-------------------------------------------------------------------------------------
#define LINHA 99
#define COLUNA 99
#define PAREDES -1
#define SOBREVIVENTE 1
#define MORTO 0