From: Daniel Schierbeck Date: 2006-07-16T02:10:08+09:00 Subject: Re: Who likes Sudoku? studlee2@gmail.com wrote: > Is there are way to loop through > numbers 1..9 using the 10.times notation so I don't have to skip '0' -- > it'd be nice to remove that line too? 1.upto(10){|i| ... } Cheers, Daniel