The challenge is to write a sub that takes the paramters ($length, @symbols) and produces an ordered list of all sequnces of length $length that are combinations of characters from the list @symbols. The output ordering is based on the order of @symbols. Assume that @symbols is a list comprised of any quantity of one-byte ASCII chars.
My current attempt at 52 chars:
Example:sub c{my$n=-1+shift;$n?map{my$c=$_;map$c.$_,c($n,@_)}@_:@_}
Good luck, and may your efforts yield little code :)print join " ", c qw(2 a b c d); print "\n"; print join " ", c qw(4 0 1); # outputs aa ab ac ad ba bb bc bd ca cb cc cd da db dc dd 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 +1110 1111
MeowChow s aamecha.s a..a\u$&owag.print
|
---|
Replies are listed 'Best First'. | |
---|---|
Re (tilly) 1: (Golf) Ordered Combinations
by tilly (Archbishop) on Apr 25, 2001 at 06:51 UTC | |
by MeowChow (Vicar) on Apr 25, 2001 at 07:20 UTC | |
by Anonymous Monk on Jan 25, 2007 at 16:26 UTC | |
Re: (Golf) Ordered Combinations
by sachmet (Scribe) on Apr 25, 2001 at 01:42 UTC | |
by adolfoams@gmail.com (Initiate) on Aug 12, 2014 at 13:26 UTC | |
by AppleFritter (Vicar) on Aug 12, 2014 at 14:04 UTC | |
Re: (Golf) Ordered Combinations
by satchboost (Scribe) on Apr 25, 2001 at 01:55 UTC |
Back to
Obfuscated Code