Skip to content

Instantly share code, notes, and snippets.

View evansb's full-sized avatar

Evan Sebastian evansb

  • Singapore
View GitHub Profile
// Minesweeper.cc
// Evan Sebastian <evanlhoini@gmail.com>
#include <cstdio>
#include <vector>
using namespace std;
int count9(vector<vector<char> >& mine, int i, int j) {
int c = 0;
int w = (int)mine[0].size();
@evansb
evansb / .vimrc
Last active December 22, 2015 08:49
My .vimrc
set nocompatible
filetype off
if has("gui_running")
set guifont=Source\ Code\ Pro\ for\ Powerline:h12
set linespace=3
endif
set rtp+=~/.vim/bundle/vundle