I have two list
list_1 <- list('A', 'B', 'C')
list_2 <- list('X', 'Y')
if I want the resultant list to be of the form
list_3 <- list('AX', 'AY', 'AZ', 'BX', 'BY', 'BZ', 'CX', 'CY', 'CZ')
The final list should be all possible combinations of the elements in both the lists without duplicates.