[QUIZ] Shirt Reader (#140)

How about we post our lists of t-shirt phrases and what word we expect to be in the possible matches list to help each other test our solutions. Here's mine:

    expectations = {
      %w[e scent shells] => 'essentials',
      %w[q all if i] => 'qualify',
      %w[fan task tick] => 'fantastic',
      %w[b you tea full] => 'beautiful',
      %w[fun duh mint all] => 'fundamental',
      %w[s cape] => 'escape',
      %w[pan z] => 'pansy',
      %w[n gauge] => 'engage',
      %w[cap tin] => 'captain',
      %w[g rate full] => 'grateful',
      %w[re late shun ship] => 'relationship',
      %w[con grad yeul 8] => 'congratulate',
      %w[2 burr q low sis] => 'tuberculosis',
    }

- steve

Wow. Awesome. Thanks.

James Edward Gray II

···

On Sep 21, 2007, at 12:23 PM, steve d wrote:

How about we post our lists of t-shirt phrases and what word we expect to be in the possible matches list to help each other test our solutions. Here's mine:

    expectations = {
      %w[e scent shells] => 'essentials',
      %w[q all if i] => 'qualify',
      %w[fan task tick] => 'fantastic',
      %w[b you tea full] => 'beautiful',
      %w[fun duh mint all] => 'fundamental',
      %w[s cape] => 'escape',
      %w[pan z] => 'pansy',
      %w[n gauge] => 'engage',
      %w[cap tin] => 'captain',
      %w[g rate full] => 'grateful',
      %w[re late shun ship] => 'relationship',
      %w[con grad yeul 8] => 'congratulate',
      %w[2 burr q low sis] => 'tuberculosis',
    }

%w[con grad yule 8 shins] => 'congratulations',

···

On Sep 21, 11:23 am, steve d <okst...@yahoo.com> wrote:

      %w[con grad yeul 8] => 'congratulate',

Some more:

a brie vie a shun => abbreviation
pheemeeneeneetee => femininity
me c c p => Mississippi
art fork => aardvark
liberty giblet => flibbertigibbet
zoo key knee => I would've expected "zucchini", but my script says
"sicken"...
you'll tight => yuletide
Luke I like => lookalike
mah deux mah zeal => mademoiselle
may gel omen yak => megalomaniac
half tell mall eau gist => ophthalmologist

Enjoy,
R.

···

2007/9/21, steve d <oksteev@yahoo.com>:

How about we post our lists of t-shirt phrases and what word we expect to
be in the possible matches list to help each other test our
solutions. Here's mine:

    expectations = {
      %w[e scent shells] => 'essentials',
      %w[q all if i] => 'qualify',
      %w[fan task tick] => 'fantastic',
      %w[b you tea full] => 'beautiful',
      %w[fun duh mint all] => 'fundamental',
      %w[s cape] => 'escape',
      %w[pan z] => 'pansy',
      %w[n gauge] => 'engage',
      %w[cap tin] => 'captain',
      %w[g rate full] => 'grateful',
      %w[re late shun ship] => 'relationship',
      %w[con grad yeul 8] => 'congratulate',
      %w[2 burr q low sis] => 'tuberculosis',
    }

- steve