Skip to content

Instantly share code, notes, and snippets.

Avatar
😁

Chris Bingham donbing

😁
View GitHub Profile
View gist:9429867
public class Unregistered : ITennantRegistration
{
public ITennantRegistration Regsister()
{
return new Registered();
}
}
public class Registered : ITennantRegistration
{
@donbing
donbing / ListOfListOfInts
Last active August 29, 2015 14:25
our 3rd go (has a nice menu and input cleaning, but not the quick exit stuff)
View ListOfListOfInts
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static List<List<int>> generateLiveCells()