Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

•Re: Re: (OT) Interview questions -- your response?

by merlyn (Sage)
on Sep 03, 2002 at 22:02 UTC ( [id://194919]=note: print w/replies, xml ) Need Help??


in reply to Re: (OT) Interview questions -- your response?
in thread (OT) Interview questions -- your response?

@array[0..$#array] = @array[reverse 0..$#array]; That's *not* a built-in array-reversal method.
Nor it it an "in-place" reversing method, failing the requirements of the question. You've made an entire copy of the array in a different part of memory.

-- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
Re: •Re: Re: (OT) Interview questions -- your response?
by Anonymous Monk on Sep 03, 2002 at 22:40 UTC
    True enough, and not an unexpected claim. Though one *could* argue that:
    @array[$left,$right] = @array[$right,$left];

    Isn't any more "in-place", as it is the same thing when the array is only two elements. And I didn't see where using a constant amount of additional memory was part of the requirement :-)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-04-19 18:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found