我正在构建一个包含 100 个项目的散列,并且我还有一个随机数生成器,它生成 0 到 100 之间的 100 个随机值。
我想以连续的顺序遍历我的数字 0..100 并将它们分配给哈希的键。
然后我想遍历 100 个随机数并将它们分配给哈希值。
hash = {}
(0..100).each {|e| puts e} #just prints out the values
@numbers = 100.times.map{ 0+Random.rand(0..100)}
这就是我到目前为止所得到的。任何帮助将非常感激。谢谢!