This is how I'm handling values in a Ruby hash to get an alpha-numeric lower-case sorted output (extreme example):
myhash = {
"x" => "zebra",
"one" => "1",
"alpeh" => "alpha",
"lower" => "january",
"1" => "January",
"2" => "February",
"answer" => "42"
}
m = myhash.values
puts m.map{|i| i.downcase}.sort
Output:
1
42
alpha
february
january
january
zebra
This works fine and I don't have a problem with it, but want to know if there's there a simpler/more efficient way I'm missing?