I have a list of elements (e.g. numbers) and I want to retrieve a list of all possible pairs. How can I do that using Ruby?
Example:
l1 = [1,2,3,4,5] -> l2 = [[1,2][1,3][1,4][1,5][2,3][2,4][2,5][3,4][3,5][4,5]]
|
|
|
|
|
|
|
In Ruby 1.8.6, you can use Facets:
In 1.8.7 and later,
|
||
|
|
|
|
Or, if you really want a non-library answer:
|
||
|
|