6 kyu

Pair items from two lists of different lengths

116 of 126user2553318

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)]]
Fundamentals

More By Author:

Check out these other kata created by user2553318

Stats:

CreatedJul 31, 2021
PublishedAug 1, 2021
Warriors Trained564
Total Skips15
Total Code Submissions619
Total Times Completed126
Python Completions116
Ruby Completions16
Total Stars19
% of votes with a positive feedback rating86% of 43
Total "Very Satisfied" Votes32
Total "Somewhat Satisfied" Votes10
Total "Not Satisfied" Votes1
Total Rank Assessments11
Average Assessed Rank
6 kyu
Highest Assessed Rank
5 kyu
Lowest Assessed Rank
7 kyu
Ad
Contributors
  • user2553318 Avatar
  • FArekkusu Avatar
  • albertogcmr Avatar
Ad