rassoc() is an Hash class method which searches an element through the Hash value.
Syntax: Hash.rassoc()
Parameter: Hashs for finding elements.
Return: searches an element through the Hash value
Example #1:
a = { "a" => "abc" , "b" => "200" }
c = { "a" => 100 , "c" => 300 , "b" => 200 }
puts "check : #{a.rassoc(" 200 ")}\n\n"
puts "check : #{c.rassoc(300)}\n\n"
puts "check : #{c.rassoc(100)}\n\n"
|
Output :
check : ["b", "200"]
check : ["c", 300]
check : ["a", 100]
Example #2 :
a = { "a" => "geek" , "b" => "200" }
c = { "a" => "abc" , "c" => 300 , "b" => 200 }
puts "check : #{a.rassoc(" geek ")}\n\n"
puts "check : #{c.rassoc(300)}\n\n"
puts "check : #{c.rassoc(" abc ")}\n\n"
|
Output :
check : ["a", "geek"]
check : ["c", 300]
check : ["a", "abc"]
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
07 Jan, 2020
Like Article
Save Article