------ art_24318_5344479.1151276969935
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
hi everyone,
here's my own solution to the problem:
pascal.rb
------
class Pascal
attr_reader :triangle
def initialize(rows)
@triangle
generate(rows)
end
def [](row, n)
if row>0 and row<