Skip to content

Instantly share code, notes, and snippets.

@erikdietrich
Created March 18, 2013 01:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikdietrich/5184364 to your computer and use it in GitHub Desktop.
Save erikdietrich/5184364 to your computer and use it in GitHub Desktop.
static void Main(string[] args)
{
var zipCodes = new List<int>();
var letter = new Letter();
for (int index = 0; index < 23458333; index++)
{
zipCodes.Add(index % 100000);
string pieceStatistics = letter.GetStatistics(zipCodes[index]);
Console.Write(pieceStatistics);
}
Console.ReadLine();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment