Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Working with Binary Numbers

by FunkyMonk (Chancellor)
on Sep 24, 2007 at 21:51 UTC ( [id://640833]=note: print w/replies, xml ) Need Help??


in reply to Working with Binary Numbers

If you want to stick with a recursive solution:
use Test::More tests => 1; my @data = qw( 000- 0101 011- 1-0- ); my @expected = qw( 0000 0001 0101 0110 0111 1000 1001 1100 1101 ); my @got = map { expand_binary( $_ ) } @data; is_deeply \@got, \@expected; sub expand_binary { my $bin = shift; if ( $bin =~ /-/ ) { ( my $zero = $bin ) =~ s/-/0/; ( my $one = $bin ) =~ s/-/1/; return ( expand_binary( $zero ), expand_binary( $one ) ); } return $bin; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://640833]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-04-23 23:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found