This solution uses some moderately-advanced techniques, but I recommend you study the solution and
perldoc what you don't understand. You will learn some really useful techniques!
#!/usr/bin/perl
use strict;
use warnings;
use Carp;
use Data::Dumper::Simple;
my @array = qw( 7742.8858
7748.5855
5581.2272
1248.2257
6589.5586
5680.1886
8762.1898
5581.2272
5535.5795
6896.6571
6573.2575
6589.5586
5680.1886
5487.3275
5489.5633
6589.5586
5680.1886
);
my %unique = map { $_ => '' } @array;
my @sorted_unique = sort { $a <=> $b } keys %unique;
print Dumper(%unique,@sorted_unique);
---
It's all fine and dandy until someone has to look at the code.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.