I need all the possible unique combinations of the elements of a list when divided into two sublists.
For example - if I have a list: [1, 2, 3] and I wanna divide it into two sublists, like the following:
[1], [2,3]
[1,2], [3]
[2], [1,3]
Now how would I find out all these unique combinations, Also, the order of the elements is neglected here.