Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Smoothsort

by Athanasius (Archbishop)
on Sep 20, 2015 at 07:53 UTC ( [id://1142542]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    for(my $i = $start; $i < leonardo($order);$i++){
        print "$$tab_ref[$i]\n";
    }
    
  2. or download this
    for my $i ($start .. leonardo($order) - 1) {
        print "$$tab_ref[$i]\n";
    }
    
  3. or download this
    print "$$tab_ref[$_]\n" for $start .. leonardo($order) - 1;
    
  4. or download this
    use strict;
    use warnings;
    ...
        print "bar($y)\n";
        return $y;
    }
    
  5. or download this
    19:23 >perl 1378_Smoothsort.pl
    bar(5)
    ...
    foreach loop: 4
    
    19:23 >
    

Log In?
Username:
Password:

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

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

    No recent polls found