gpt4 book ai didi

arrays - 如何在 Ruby 中添加数组中的元素

转载 作者:太空宇宙 更新时间:2023-11-03 18:12:43 26 4
gpt4 key购买 nike

像下面这些python

[m + n for m in 'ABC' for n in 'XYZ']
>>> ['AX', 'AY', 'AZ', 'BX', 'BY', 'BZ', 'CX', 'CY', 'CZ']

如何在ruby中一行归档?
非常感谢。

最佳答案

另一个使用 Array#productArray#join :

'ABC'.chars.product('XYZ'.chars).map(&:join)
#=> ["AX", "AY", "AZ", "BX", "BY", "BZ", "CX", "CY", "CZ"]

关于arrays - 如何在 Ruby 中添加数组中的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31378500/

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