Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^4: Check if sort has changed order

by LanX (Saint)
on May 10, 2013 at 13:05 UTC ( [id://1032958]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Check if sort has changed order
in thread Check if sort has changed order

> You can apply array_diff function on the sorted and unsorted file and check the output file to see weather sort had done any modification or not.

Unlikely, please demonstrate an example of how you intend to do it with Array::Utils

I mean real code!

Cheers Rolf

( addicted to the Perl Programming Language)

update

as expected, pure nonsense!

DB<110> use Array::Utils qw(:all) DB<111> @a = (8..12); @b = sort @a; @c = (@b,42) => (10, 11, 12, 8, 9, 42) DB<112> array_diff @a,@b DB<113> array_diff @a,@c => 42

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (8)
As of 2024-04-25 11:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found