Is there an efficient method to calculate the Cartesian product of two vectors in DolphinDB?
For example, given the vectors ['aa', 'bb'] and ['cc', 'dd'], the desired result is ['aacc', 'aadd', 'bbcc', 'bbdd'] without regard for the order. Your suggestions will be highly appreciated!
result will contain
['aacc', 'aadd', 'bbcc', 'bbdd']