I think it is breaking because you are printing every time you read in three lines, not every time you get three lines that you actually parse.

In the first three lines, you only parse the first one. At that point your array contains three pieces of information, ( ["llp", 1], ["Up", 5], [0, 6] ), the first time you print. It sorts them properly; you just don't have all the data yet. I suspect you are missing an else { next } in that block of elsifs.

That said, I feel compelled to tell you that your code is horrid. If I knew how to say it nicely, I would. If I was expected to maintain that, I would not hesitate to write it over again from scratch, all the while cursing your name. Frankly, I don't even know where to tell you to begin improving it. I think you should just scrap what you have and rethink your approach. You are almost certainly better off just parsing all of the data into a single data structure and then producing your report afterwards.

-sauoq
"My two cents aren't worth a dime.";

In reply to Re: Array insertion problem by sauoq
in thread Array insertion problem by kirk123

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.