From: Kalman Noel Date: 2007-01-16T21:25:06+09:00 Subject: Re: Can anyone try to solve this problems? Pe単a, Botp: > btw, i'd prefer max(&:length) over max_by.. Note the difference in using sort and sort_by, or max and max_by: enum.max { |x,y| x.length <=> y.length } enum.max_by { |x| x.length } # 1.9 Kalman