If the two words are not anagrams then %anaHash will have two keys as the $sortWord will be different for the two words entered. Which means you go around your for each twice for none anagrams and only once if they are anagrams.

Depending on your future plans to expand on this script. You may be able to do away with the loop and replace it with an if which identifies the $sortWord is the same else print not an anagram. If you have a reason for the loop I would suggest moving the that else statement outside the loop and make it an if conditional on a $anagramFound flag populated by the earlier checks.


In reply to Re: Final Print Statement in Foreach Loop Prints Twice by rnewsham
in thread Final Print Statement in Foreach Loop Prints Twice by ScarletRoxanne

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.