in reply to Finding Combinations of Pairs
I think your spidey sense serves you well.
This smells a little like homework, so I'm putting my solution in spoiler tags.
You should come up with your pairs, and for each pair keep a count (in a hash) of how many times that pair has been seen. Each key of the hash will be a pair, and each value will be the count of occurrences. Once you have that, you can sort the keys by the values and come up with the pair that appears the most. I suspect every one of these tasks has been the subject of some post you could find with Super Search.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Finding Combinations of Pairs
by tilly (Archbishop) on Jan 14, 2009 at 05:15 UTC | |
by grinder (Bishop) on Jan 14, 2009 at 08:38 UTC | |
by Limbic~Region (Chancellor) on Jan 14, 2009 at 15:03 UTC | |
by andye (Curate) on Jan 14, 2009 at 17:21 UTC | |
by Limbic~Region (Chancellor) on Jan 14, 2009 at 18:57 UTC | |
by tilly (Archbishop) on Jan 14, 2009 at 20:54 UTC | |
by Limbic~Region (Chancellor) on Jan 14, 2009 at 21:26 UTC | |
| |
Re^2: Finding Combinations of Pairs
by zod (Scribe) on Jan 14, 2009 at 07:23 UTC | |
by andye (Curate) on Jan 14, 2009 at 23:14 UTC |