Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Here's my lazy attempt
use strict; ## I've lazily pre-sorted these ;) my @ars = ( [ qw/ 1 2 3 4 5 / ], [ qw/ 1 2 3 4 6 / ], [ qw/ 2 3 4 6 7 / ], ); for(@ars) { print "broken list: @$_\n" and next if $_->[0] != 1; my($i, $n) = 0; $n = $_->[$i] while $i <= $#{$_} and $_->[$i] + 1 == $_->[++$i]; print "woo: @$_\n" if $n == $_->[-1]; print "doh: sequence broke at index ${\($i - 1)} (@$_[$i - 1,$i])\n" if $n != $_->[-1]; } __output__ woo: 1 2 3 4 5 doh: sequence broke at index 3 (4 6) broken list: 2 3 4 6 7
So basically it checks the sequence by iterating through the pre-sorted array until there's a gap in the sequence. Then just checks whether the end value is the same as last value seen in the iteration.
HTH

_________
broquaint


In reply to Re: Validate array of numbers in sequence by broquaint
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 imbibing at the Monastery: (1)
As of 2024-04-25 01:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found