Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Homework question list

by TedPride (Priest)
on May 21, 2005 at 07:26 UTC ( [id://459204]=note: print w/replies, xml ) Need Help??


in reply to Homework question list

Just browse the boards every day and try to solve the more algorithmic-style questions without looking at the code people have posted. Then compare your code to theirs. A week or two of this will give you a fairly good grasp of Perl.

By the way, the simplest way to remove trailing newlines from an array is:

chomp for @arr;
You could also use chop, substr, or s///, but chomp has the best combination of speed and flexibility for this task.

Replies are listed 'Best First'.
Re^2: Homework question list
by Aragorn (Curate) on May 21, 2005 at 17:32 UTC
    Even better would be:
    chomp @arr;
    because when chomp is fed a list, it'll chomp each element.

    Arjen

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-19 10:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found