Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^2: Max value

by Marshall (Canon)
on Apr 19, 2019 at 05:14 UTC ( [id://1232787]=note: print w/replies, xml ) Need Help??


in reply to Re: Max value
in thread Max value

The easy thing to do is generate a hash and then use the code that you already have to print N22=>5 N23=>5.
Adapt my previous post to allow multiple max values to be printed however you want.
#!/usr/bin/perl use strict; use warnings; my @wire = qw(N10 N11 N16 N19 N22 N23); my @arrayh = qw(3 3 4 4 5 5); my %hash; @hash{@wire}=@arrayh; #hash slice foreach my $key (keys %hash) { print "$key => $hash{$key}\n"; } __END__ N23 => 5 N19 => 4 N10 => 3 N16 => 4 N22 => 5 N11 => 3

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1232787]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (2)
As of 2024-04-26 01:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found