in reply to (Golf) mobile phone numbers -> words
Update: I believe that I can add 5 (score:118) and get all possibilities.sub num{ $k=shift;for(@_){chomp;$n=lc;$n=~y/abcdefghijklmnopqrstuvwxyz/22233344 +455566677778889999/;push@{$h{$n}},$_;$h{$k} }
Update #2: Now down to 107 with all possibilities, now returns an array instead of ref to arraysub num{ #23456789_123456789_123456789_123456789_123456789_123456789_123456789_ +123456789_123456789_123456789_123456789_12345678 $k=shift;for(@_){$n=$_;chomp;lc;y/abcdefghijklmnopqrstuvwxyz/222333444 +55566677778889/;push@{$h{$k}},$n if$k=~$_}$h{$k} }
Returns a reference to all single words found.sub num{ $k=shift;for(@_){chomp;lc;$n=$_;y/abcdefghijklmnopqrstuvwxyz/222333444 +55566677778889/;push@h,$n if$k=~$_}@h }
|
|---|