Open In App

Ruby | Array max() function

Last Updated : 06 Dec, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

Array#max() : max() is a Array class method which returns the maximum value in this array.

Syntax: Array.max()

Parameter: Array

Return: the maximum value in this array.

Example #1 :




# Ruby code for max() method
  
# declaring array
a = %w[for geeks]
  
  
# max method example
puts "max() method form : #{a.max()}\n\n"
  
puts "max() method form : #{a.max(2)}\n\n"


Output :

max() method form : geeks

max() method form : ["geeks", "for"]

Example #2 :




# Ruby code for max() method
  
# declaring array
a = %w[hi I can code for geeks]
  
  
# max method example
puts "max() method form : #{a.max(4)}\n\n"
  
puts "max() method form : #{a.max(1)}\n\n"


Output :

max() method form : ["hi", "geeks", "for", "code"]

max() method form : ["hi"]

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads