Skip to content

Instantly share code, notes, and snippets.

@mantognini
Created May 29, 2012 15:03
Show Gist options
  • Select an option

  • Save mantognini/2828929 to your computer and use it in GitHub Desktop.

Select an option

Save mantognini/2828929 to your computer and use it in GitHub Desktop.
q211
sub q211
{
my %table = ();
my $index = 0;
foreach $i (A..R) {
$table{$i} = int ($index++ / 3) + 2;
}
$index = 0;
foreach $i (T..Y) {
$table{$i} = int ($index++ / 3) + 8;
}
$table{S} = 7;
$table{Z} = 9;
return %table;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment