Pair items from two lists of different lengths
Description:
Task
Write a function with the following properties:
- takes two lists
- returns a list of all possibilities to pair as many elements as possible from both lists while keeping the order of the elements
- output format is a list of lists of tuples, or a list with an empty list, if no pairs are possible
- inner lists can be of any order (see tests)
Hints
If both input lists are of equal length, then every item of one list will be paired with an item of the other list (see first example) -> results in only one sublist. If both input lists are of different length and not empty, then every item of the shorter list will be paired, but not every item of the larger list -> results in more than one sublist, because there are more then one possibilities to omit items from the larger list.
Example 1
Pair elements of ['c', 'o', 'd', 'e']
with elements of ['w', 'a', 'r', 's']
Expected Result:
[[('c', 'w'), ('o', 'a'), ('d', 'r'), ('e', 's')]]
Example 2
Pair elements of the following two lists:
['electric', 'horse', 'fly']
['1st', '2nd']
Valid result:
[[('electric', '1st'), ('horse', '2nd')],
[('electric', '1st'), ('fly', '2nd')],
[('horse', '1st'), ('fly', '2nd')]]
Example 3
Pair elements of ['a', 'b', 'c']
with elements of ['x', 'y']
Valid Result:
[[('a', 'x'), ('b', 'y')],
[('a', 'x'), ('c', 'y')],
[('b', 'x'), ('c', 'y')]]
Example 4
Pair elements of [1, 2]
with elements of [6, 7, 8, 9]
Valid Result:
[[(1, 6), (2, 7)],
[(1, 6), (2, 8)],
[(1, 6), (2, 9)],
[(1, 7), (2, 8)],
[(1, 7), (2, 9)],
[(1, 8), (2, 9)]]
Similar Kata:
Stats:
Created | Jul 31, 2021 |
Published | Aug 1, 2021 |
Warriors Trained | 564 |
Total Skips | 15 |
Total Code Submissions | 619 |
Total Times Completed | 126 |
Python Completions | 116 |
Ruby Completions | 16 |
Total Stars | 19 |
% of votes with a positive feedback rating | 86% of 43 |
Total "Very Satisfied" Votes | 32 |
Total "Somewhat Satisfied" Votes | 10 |
Total "Not Satisfied" Votes | 1 |
Total Rank Assessments | 11 |
Average Assessed Rank | 6 kyu |
Highest Assessed Rank | 5 kyu |
Lowest Assessed Rank | 7 kyu |