Q:

Ruby program to get the hash elements as a sorted array from the hash collection

belongs to collection: Ruby Hashes Programs

0

In this program, we will create a hash collection then we will get the hash elements as a sorted array using the sort() method and print the result.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to get the hash elements as a sorted array from the hash collection is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to get the hash elements 
# as a sorted array from 
# the hash collection

hash = {"104" => "Mukesh", "105" => "Mohit","103" => "Amit", "101" => "Arun", "102" => "Sumit"};

sortedArray = hash.sort()

puts "Sorted Array: ",sortedArray;

Output:

Sorted Array: 
101
Arun
102
Sumit
103
Amit
104
Mukesh
105
Mohit

Explanation:

In the above program, we created a hash collection to store student information. Then we used the sort() method to get hash collection as a sorted array and printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Hashes Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to store items into the hash collecti... >>
<< Ruby program to replace the items of hash collecti...