So I would have 2 lists, with a random amount of values. for example:
listx = [15513, 813, 984949, 5000], listj = [76815, 75, 8484, 9419419, 418841814, 84848, 84848]
How would I generate every possible combination of these lists? Like:
combination = [15513, 75, 9419419]
it can take as much values as it wants from both list to use in the combination, I want to check every single combination, like it can take 2 values from the first one and 5 from the other, or all from the first one and 3 from the other.