From: Rak Rok Date: 2007-03-20T08:43:55+09:00 Subject: Re: Golfing the Farey Sequence ------=_Part_162271_14520839.1174347828546 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline A little shorter: N=7 a={} 0.upto(N) { |i| 1.upto(N) { |j| a[(i+0.0)/j] ||= "#{i}/#{j}" }} a.sort.each{|k,v|puts v if k<=1} -rr- ------=_Part_162271_14520839.1174347828546--