Round2 (PSDS Round)(60mins):
Problem 1 - Given a set of unique elements, print the power set.
For eg- {1, 2, 3}
Power set will be - {{}, {1}, {2}, {3}, {1,2}, {2,3}, {1,3}, {1,2,3}}
---> have coded using recursion.
---> need to dry run the code for above test case.