Нахождение произведения переменного числа массивов Ruby - PullRequest
7 голосов
/ 06 августа 2010

Я ищу, чтобы найти все комбинации отдельных предметов из переменного числа массивов. Как мне это сделать в Ruby?

Учитывая два массива, я могу использовать Array.product следующим образом:

groups = []
groups[0] = ["hello", "goodbye"]
groups[1] = ["world", "everyone"]

combinations = groups[0].product(groups[1])

puts combinations.inspect 
# [["hello", "world"], ["hello", "everyone"], ["goodbye", "world"], ["goodbye", "everyone"]]

Как этот код может работать, когда группы содержат переменное число массивов?

1 Ответ

13 голосов
/ 06 августа 2010
groups = [
  %w[hello goodbye],
  %w[world everyone],
  %w[here there]
]

combinations = groups.first.product(*groups.drop(1))

p combinations
# [
#   ["hello", "world", "here"],
#   ["hello", "world", "there"],
#   ["hello", "everyone", "here"],
#   ["hello", "everyone", "there"],
#   ["goodbye", "world", "here"],
#   ["goodbye", "world", "there"],
#   ["goodbye", "everyone", "here"],
#   ["goodbye", "everyone", "there"]
# ]
...