Combine two lists into a list of pairs, handling different lengths gracefully.
Constraints
Example
>>> zip_lists([1, 2, 3], [4, 5, 6]) [[1, 4], [2, 5], [3, 6]] >>> zip_lists([1, 2, 3], ['a', 'b']) [[1, 'a'], [2, 'b']] >>> zip_lists([], [1, 2]) []
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints