Help on Schwartzian method
Hi all,
I was reading through UR coloumns by Randal in www.stonehenge.com. I
came across the code which i really tried heating up my brain ..but
with no result. Can anyone help me understand how the concept goes.
(1)
@data = <>; # read data
foreach (@data) {
($name,$score) = split; # get score
$score{$_} = $score; # record it
}
I guess $_ contains what is read from @data at a given time in
the loop.Am I correct?
(2)
But what is $_ in
@pairs = map {
($name, $score) = split;
[ $_, $score ];
} @data;
Randal says" I build a two-element anonymous list from the $score and
the original value $_"
what does that mean?
(3)
print
map { $_->[0] }
sort { $a->[1] <=> $b->[1] }
map { [$_, (split)[1] ] }
<>;
Now I dont even have any clue on what is $_->[0],$a->[1] and $b-
[1]
Please help me with answers.
regards,
jis
.
Relevant Pages
- Re: Reading Suggestions for the dark place please!!
... and get my health and brain back. ... So if anyone cares to advise, I will be looking for reading material ... crime with a splash of Hard Core Military. ... You like Grafton; ... (rec.arts.mystery) - Re: Glass cockpit hard to read
... just like reading a digital clock takes longer than reading ... I found it a little hard to adjust to the ... The analog displays I am ... Flying is a right hand brain activity. ... (rec.aviation.piloting) - Re: Glass cockpit hard to read
... just like reading a digital clock takes longer than reading ... I found it a little hard to adjust to the ... The analog displays I am ... Flying is a right hand brain activity. ... (rec.aviation.piloting) - Re: 9/11/01 Flight 93: Todd Beamer and others were not heroes....they failed!
... > reading Harry Potter and wrote: ... thank you very much Brain! ... There are no tough guys on the internet. ... kicked in real life and now try to make up for it by playing the Tough Guy ... (alt.support.stop-smoking) - Re: suitable first person shooter for 7 yr old ?
... Laboratory experiments1 have also been done to study people’s reactions to TV by monitoring brain waves by the use of EEG. ... The studies showed less mental stimulation as measured by alpha brain-wave production during viewing TV than if these participants had been reading. ... "Any attempt to replace a personal conscience by a collective conscience does ... (comp.sys.ibm.pc.games.action) |
|