Help for this page

Select Code to Download


  1. or download this
    if ($low > $n_las) {
             $n_las++;
          }
    
  2. or download this
    def find_lis_greedy(seq)
        n = seq.length
    ...
        
        return lis
    end