Get the max value in an array : max « Array « Ruby






Get the max value in an array


[3, 5, 11, 16].max                                # => 16
["three", "five", "eleven", "sixteen"].max        # => "three"
["three", "five", "eleven", "sixteen"].max { |x,y| x.size <=> y.size }
# => "sixteen"

 

Related examples in the same category