Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8645795
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T12:38:32+00:00 2026-06-12T12:38:32+00:00

I think I have the right idea but there’s some syntax/convention thing I’m messing

  • 0

I think I have the right idea but there’s some syntax/convention thing I’m messing up, because I get the error “Global symbol %timeHash requires explicit package name”.

Code:

foreach $key (sort hashValueDescendingNum (keys(%timeHash))) {
   print "\t$key\t\t $timeHash{$key}\n";
}



sub hashValueDescendingNum {
   my $hash = shift;
   $hash{$b} <=> $hash{$a};
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T12:38:33+00:00Added an answer on June 12, 2026 at 12:38 pm

    Inline

    foreach my $key (sort { $timeHash{$b} <=> $timeHash{$a} } keys %timeHash) {
       print "\t$key\t\t $timeHash{$key}\n";
    }
    

    Using a custom sort function the way you are trying to will not work well, because then your sub would need to access the original hash.

    foreach my $key (sort hashValueDescendingNum (keys(%timeHash))) {
        print "\t$key\t\t $timeHash{$key}\n";
    }
    
    sub hashValueDescendingNum {
       $timeHash{$b} <=> $timeHash{$a}; # Ew.
    }
    

    Instead you can abstract it further:

    foreach my $key (sortedHashKeysByValueDescending(%timeHash)) {
        print "\t$key\t\t $timeHash{$key}\n";
    }
    
    sub sortedHashKeysByValueDescending {
      my %hash = @_;
      my @keys = sort { $hash{$b} <=> $hash{$a} } keys %hash;
      return @keys;
    }
    

    The code is not efficient because it passes around the %hash though, references would be better:

    foreach my $key (sortedHashKeysByValueDescending(\%timeHash)) {
        print "\t$key\t\t $timeHash{$key}\n";
    }
    
    sub sortedHashKeysByValueDescending {
      my $hash = shift;
      return sort { $hash->{$b} <=> $hash->{$a} } keys %$hash;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

OK, I don't think the title says it right... but here goes: I have
im getting this error but I have no idea why its happening. It stops
I think I might have done something right, headByRating and headByName both refer to
Anyone have code to set margins(top,left,right,bottom) using excel interop and vb.net. I think it
I'm trying to start out with LinqtoXml. I have added (I think) the right
Here is the thing. Right now I have this e-commerce web site where people
I don't know if the title is right. The thing is that I have
I think I have a basic understanding of this, but am hoping that someone
I have an issue that (I think) might have to do with scope, but
I am trying to really get a good idea how to think in OOP

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.