Misc | Letters | Sandwich | |
! + Theomatic | The Older Boys | The C's | |
! + Mirth | The Gender Elders, ¡Ole! | ||
! + Sparowe | |||
! + Basiliskos | The Ends | The K's, The L's | The Bread |
Theomatic + Mirth | The Blue Eyes | The H's | |
Theomatic + Sparowe | |||
Theomatic + Basiliskos | The Condiments | ||
Mirth + Sparowe | The Girls | ||
Mirth + Basiliskos | |||
Sparowe + Basiliskos | The Gender Youngers | the S's | |
! + Theomatic + Mirth | kids.take 3 | The M's, The T's | |
! + Theomatic + Sparowe | The E's | ||
! + Theomatic + Basiliskos | The Boys | ||
! + Mirth + Sparowe | The R's | ||
! + Mirth + Basiliskos | |||
! + Sparowe + Basiliskos | The Brown Eyes | ||
Theomatic + Mirth + Sparowe | |||
Theomatic + Mirth + Basiliskos | |||
Theomatic + Sparowe + Basiliskos | |||
Mirth + Sparowe + Basiliskos | |||
! + Theomatic + Mirth + Sparowe | kids.take 4 | ||
! + Theomatic + Mirth + Basiliskos | The I's | ||
! + Theomatic + Sparowe + Basiliskos | Unique Chars | The A's, The O's | |
! + Mirth + Sparowe + Basiliskos | |||
Theomatic + Mirth + Sparowe + Basiliskos | cdr, The Alphanumeric | Open-Face | |
(all) | The Kids |
Key(Edit)
! | M | 12 | Brown Eyes |
Theomatic | M | 11 | Blue Eyes |
Mirth | F | 9 | Blue Eyes |
Sparowe | F | 7 | Brown Eyes |
Basiliskos | M | 4 | Brown Eyes |
Explanations(Edit)
- 1st Column (Misc)
- ¡Ole! because the only vowel in Mirth's name looks like "¡", plus "!".
- kids.take(x) is a Ruby term meaning "the first x of a list"
- Unique Chars — Because you can spell "Mirth" using characters from the names of the other kids
- `cdr` is a Scheme term. Thanks fowl!
- 2nd Column, The _'s — Kids with '_'s in their names if you spell "!" as "Exclamation Mark")
- 3rd Column, Sandwiches (we're picturing bread-condiment-meat-condiment-bread)
Code(Edit)
(Just a scratch space so I can start analyzing again without having to redo this)
`KIDS = %w(ExclamationMark Theomatic Mirth Sparowe Basiliskos)
KDS = %w(! Theomatic Mirth Sparowe Basiliskos)
kids = KIDS.map &:downcase
kds = KDS.map &:downcase
combos = 2.upto(kids.size - 1).map { |n| kids.combination(n).to_a }.flatten(1)
def ss a; Set.new(a.split //) end
def charmap; ('a'..'z').each { |char| print char + ': '; KIDS.each { |k| k/ and print k + ', ' }; puts } end
`