gpt4 book ai didi

ruby - 创建一个固定大小的数组,并用另一个数组填充默认内容?

转载 作者:数据小太阳 更新时间:2023-10-29 06:34:55 25 4
gpt4 key购买 nike

我想创建一个固定大小的数组,其中默认数量的元素已经从另一个数组中填充,所以假设我有这个方法:

def fixed_array(size, other)
array = Array.new(size)
other.each_with_index { |x, i| array[i] = x }
array
end

那么我可以使用如下方法:

fixed_array(5, [1, 2, 3])

我会得到

[1, 2, 3, nil, nil]

在 ruby​​ 中有更简单的方法吗?就像用 nil 对象扩展我已有的数组的当前大小一样?

最佳答案

def fixed_array(size, other)  
Array.new(size) { |i| other[i] }
end
fixed_array(5, [1, 2, 3])
# => [1, 2, 3, nil, nil]

关于ruby - 创建一个固定大小的数组,并用另一个数组填充默认内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16830956/

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