Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Seeing that you're looking for other ways to do it, I offer this, which solves the general case of validating any sequence where the value of Nn depends only on Nn-1:
# first the sequences to test my @sequences = ( [qw(1 2 3 4 5)], # start at 1, inc by 1 [qw(1 3 5 7 9)], # start at 1, inc by 2 [qw(0 1 0 1 0)], # start at 0, alternate 0/1 [qw(2 1 0 -1 -2)] # start at 2, dec by 1 ); # the functions to test them against - each one should # match just one of the sequences above my @functions =( { text => 'start at 1, increment by 1', start => 1, function => sub { $_[0] + 1 } }, { text => 'start at 1, increment by 2', start => 1, function => sub { $_[0] + 2 } }, { text => 'start at 0, alternate 0/1', start => 0, function => sub { ($_[0] == 0) ? 1 : 0 } }, { text => 'start at 2, decrement by 1', start => 2, function => sub { $_[0] - 1 } } ); foreach my $function (@functions) { print $function->{text}."\n"; foreach my $sequence (@sequences) { print ' '; print 'not ' unless( checksequence( @{$sequence}, $function->{start}, $function->{function} ) ); print 'ok ['.join(', ', @{$sequence})."]\n"; } } # takes a sequence, the desired start value, and the # function to generate the next correct value sub checksequence { # the sequence is the most important parameter, so # i pass it first. my($f, $z, @seq) = reverse(@_); @seq = reverse(@seq); # check that the first value is correct return 0 unless(shift(@seq) == $z); # now see if any subsequent values are wrong and # if they are, return immediately foreach my $value (@seq) { return 0 unless(($z = $f->($z)) == $value); } 1; }
Of course, with some devious and evil trickery the function you pass in to checksequence() could maintain some state information, so it could check more complicated sequences where a value depends on more than just its immediate predecessor.

In reply to Re: Validate array of numbers in sequence by DrHyde
in thread Validate array of numbers in sequence by AcidHawk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-19 03:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found