7
How would a way to merge two lists into one matrix, where each column of the matrix represents one of these lists.
Example:
a = ["Laranja", "Maçã", "Uva"]
b = [40, 50, 2, 45, 56]
Expected result:
x = (["Laranja", 40], ["Maça", 50], ["Uva", 2], ["", 45], ["", 56])