Help for this page

Select Code to Download


  1. or download this
    my @array = (-10,30,5,0b1011,7,9,8, -01111,-10,1,-0xFFF,-19923,3,9,-30
    +,5,-100,0,-1,0xFF,-3,30,0b1011,3,2,-300,-0xFF,15);
    
  2. or download this
    @array with  28 elements   =  -10 30 5 11 7 9 8 -585 -10 1 -4095 -1992
    +3 3 9 -30 5 -100 0 -1 255 -3 30 11 3 2 -300 -255 15
    @sorted with 28 elements   =  -19923 -4095 -585 -300 -255 -100 -30 -10
    + -10 -3 -1 0 1 2 3 3 5 5 7 8 9 9 11 11 15 30 30 255
    
  3. or download this
    my @array = (5,3,4,5,5,1,432,4,3,2)
    
  4. or download this
    @array with  10 elements   =  5 3 4 5 5 1 432 4 3 2
    @sorted with 10 elements   =  1 2 3 3 4 4 5 5 5 432