In this post I will be describing how to generate subsets of a list / array programmatically. The code will be in python version. There are two ways to generate subsets Method 1 One elegant way to go through all subsets of a set is to use recursion. Let’s consider a list or superset [1,Continue reading “How to Generate Subsets”