Just give me a hint to create sub-sequences of an array in less time.
Algorithm to create sub sequences
@sktg99 You can generate the subsequences using recursion. Other method to generate subsets is by bit manipulation. But at minimum they would be of complexity O(2^n). Both of these methods are explained in their respective sections in the course.