gpt4 book ai didi

ruby - 在 Ruby 中,如何从具有值的哈希中提取键

转载 作者:数据小太阳 更新时间:2023-10-29 07:08:53 24 4
gpt4 key购买 nike

当我写这篇文章时,我以为我是 Ruby 巨人:

# having this hash
hash = { 'Portugal' => 1, 'France' => 2, 'USA' => 3 }

# country_id comes from input
country_name = (hash.select { |k,v| v == country_id.to_i }.first || []).first

它确实正确地提取了国家名称,如果找不到国家也不会失败。

我对此非常满意。

但是我的导师说它可以/应该在可读性、长度和性能方面进行优化!

还有什么比这更清晰/更快的呢?

请指教

最佳答案

嗯,看来你的导师是对的:)

你可以这样做:

hash.invert[ country_id.to_i ] # will work on all versions

或者,按照@littlecegian 的建议

hash.key( country_id.to_i )    # will work on 1.9 only

或者,按照@steenslag 的建议

hash.index( country_id.to_i )  # will work on 1.8 and 1.9, with a warning on 1.9

完整示例:

hash = { 'Portugal' => 1, 'France' => 2, 'USA' => 3 }

%w[2 3 1 blah].each do |country_id|

# all versions
country_name = hash.invert[ country_id.to_i ]

# 1.9 only
country_name = hash.key( country_id.to_i )

# 1.8 and 1.9, with a warning on 1.9
country_name = hash.index( country_id.to_i )


printf "country_id = %s, country_name = %s\n", country_id, country_name
end

将打印:

country_id = 2, country_name = France
country_id = 3, country_name = USA
country_id = 1, country_name = Portugal
country_id = blah, country_name =

看到它正在运行here

关于ruby - 在 Ruby 中,如何从具有值的哈希中提取键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13184752/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com