Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: zero padding

by nobull (Friar)
on Feb 09, 2005 at 20:26 UTC ( [id://429500]=note: print w/replies, xml ) Need Help??


in reply to zero padding

Am I mad or is everyone here being fooled by the thread topic and missing the obvious?
sub connectm { my ($val1,$val2) = @_; return $val1 * 10000 + $val2; }

Replies are listed 'Best First'.
Re^2: zero padding
by dragonchild (Archbishop) on Feb 09, 2005 at 20:37 UTC
    Genius? Maybe. Mad? Probably. Right? No.
    use strict; use Test::More qw( no_plan ); sub nobull { my ($val1,$val2) = @_; return $val1 * 10000 + $val2; } sub dragonchild { join'', map sprintf("%04d", $_), @_ } my @tests = ( [ '3214', '0578', '32140578' ], [ '3214', '0000', '32140000' ], [ '2340', '0230', '23400230' ], [ '3214', '6578', '32146578' ], [ '3210', '6578', '32106578' ], [ '2130', '1000', '21301000' ], [ '0004', '6789', '00046789' ], ); foreach my $test (@tests) { is( nobull( $test->[0], $test->[1] ), $test->[2] ); is( dragonchild( $test->[0], $test->[1] ), $test->[2] ); }

    Update: Expanded the number of tests being handled.

    Being right, does not endow the right to be rude; politeness costs nothing.
    Being unknowing, is not the same as being stupid.
    Expressing a contrary opinion, whether to the individual or the group, is more often a sign of deeper thought than of cantankerous belligerence.
    Do not mistake your goals as the only goals; your opinion as the only opinion; your confidence as correctness. Saying you know better is not the same as explaining you know better.

      Correctness is in the eye of the beholder. Since the original author said:

      then converted back to number by adding 0.
      then nobull's implementation is a smidgeon faster than yours since nobull's implementation doesn't need to undergo the extra string to number transformation that yours does. Even if the speed difference is nil, nobull's implementation is also conceptually what zentara wanted, as implied by the "adding 0" bit above.

      Yea, the question (and it remains so in all of these) is that the first section is at least 1000.

      Otherwise it wouldn't really be 8 bytes digits to begin with (not going to argue semantics here).

      I kind of assumed that. Otherwise you'll just have to pad both sides and concat or multiply left by 10000, add to right and pad left.

      Update: You could just

      sprintf( "%08d", $var1*10000+$var2 )

      and call it a day, but that's actually slower than any of the others :(
Re^2: zero padding
by RazorbladeBidet (Friar) on Feb 09, 2005 at 20:31 UTC
    We weren't "fooled" - we were "focused" :)

    Good show.
Re^2: zero padding
by zentara (Archbishop) on Feb 09, 2005 at 20:32 UTC
    Yes of course, you are not mad, you are a genius!! That was the kind of obvious solution that was eluding me. Thanks.

    I'm not really a human, but I play one on earth. flash japh

Log In?
Username:
Password:

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

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

    No recent polls found