In Ruby, we commonly use uniq method on an array to fetch the collection of all unique elements. But there may be cases where we might need elements in a hash by virtue of uniqueness of its values. Let's consider an example of countries that have hosted the Olympics. We only want to know when was the first time a country hosted it. 1 2# given object 3{ 1896 => 'Athens', 4 1900 => 'Paris', 5 1904 =