http://www.perlmonks.org?node_id=950370


in reply to Re^3: Golf: Seven segment display
in thread Golf: Seven segment display

a few obvious optimizations:

say map$'&2**$_?$_>9?'|':_:$",map{2 .$_,$_,1 .$_}split!//,"@_"for 1005,924745596,341831533

Replies are listed 'Best First'.
Re^5: Golf: Seven segment display
by kikuchiyo (Hermit) on Jan 28, 2012 at 18:08 UTC

    I'd say the use of $' is less than obvious. Nice work btw.

    The shortest solution I know (not my own creation):

    for$;(0..2){say map{substr' | |_|_ _ _|',vec('0123456789abcdef',$;.$ +_,4),3}"@_"=~/./g}

    where '0123456789abcdef' is to be substituted with "\x09\x99\x90\x99\x99\x13\xBB\x75\x17\x55\x15\xB7\xB1\x15\xB5". When the \x codes are replaced with the actual characters, it comes out two characters shorter than the solution above. (Not very elegant, though.)

      Cool!

      Could be shortened by two chars using the same tricks:

      say map{substr'   | |_|_ _ _|',vec('0123456789abcdef',$'.$_,4),3}split!//,"@_"for 0..2