Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Ruby | Array rassoc() operation

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Array#rassoc() : rassoc() is an Array class method which searches an element through the array.
 

Syntax:  Array.rassoc()

Parameter: 
- Arrays for finding elements. 
- elements to detect

Return:  Array after adding the elements at the end.

Code #1 : Example for rassoc() method

Ruby




# Ruby code for rassoc() method
  
# declaring array
a = [18, 22, 33, 4, 5, 6]
  
# declaring array
b = [5, 4, 22, 1, 88, 9]
  
# declaring array
c = [18, 22, 33, 40, 50, 16]
 
ar = [a, b, c]
 
# searching for an element
puts "check : #{ar.rassoc(4)}\n\n"
 
puts "check : #{ar.rassoc(22)}\n\n"


Output : 

check : [5, 4, 22, 1, 88, 9]

check : [18, 22, 33, 4, 5, 6]

Code #2 : Example for rassoc() method 

Ruby




# Ruby code for rassoc() method
  
# declaring array
a = ["abc", "xyz", "dog"]
  
# declaring array
b = ["cow", "cat", "dog"]
  
# declaring array
c = ["cat", "1", "dog"]
 
ar = [a, b, c]
 
 
# searching for an element
puts "check : #{ar.rassoc("xyz")}\n\n"
 
puts "check : #{ar.rassoc("1")}\n\n"


Output : 

check : ["abc", "xyz", "dog"]

check : ["cat", "1", "dog"] 

My Personal Notes arrow_drop_up
Last Updated : 21 Aug, 2021
Like Article
Save Article
Similar Reads