Re: Exercise Algorithms

2012-01-14 Thread Lubos Boucek
On Sat, Jan 14, 2012 at 9:25 PM, Shlomi Fish wrote: > Hi Lubos, > > On Sat, 14 Jan 2012 20:06:13 +0100 > Lubos Boucek wrote: > > > Hello, > > > > I would like to train my skills at Perl on some algorithms, difficult but > > not too long. Could anybody send me a link to some? > > > > I have a lis

Re: Exercise Algorithms

2012-01-14 Thread Shlomi Fish
Hi Lubos, On Sat, 14 Jan 2012 20:06:13 +0100 Lubos Boucek wrote: > Hello, > > I would like to train my skills at Perl on some algorithms, difficult but > not too long. Could anybody send me a link to some? > I have a list of exercises here: http://perl-begin.org/exercises/ Regards,

Exercise Algorithms

2012-01-14 Thread Lubos Boucek
Hello, I would like to train my skills at Perl on some algorithms, difficult but not too long. Could anybody send me a link to some? Thank you in advance, Lubos

Re: Inserting a new data structure in a bless reference

2012-01-14 Thread Shawn H Corey
On 12-01-13 10:25 PM, Parag Kalra wrote: The simplest way I thought of expressing this question is through Pseudo-script so here it is: use strict; use warnings; use FooBar; my $obj = FooBar->new; Do something ... $obj->{'new_key'} = 'some_value' Now I am not sure if that is the