Write a function that takes an object and a sequence and returns the index of the item in the sequence, starting from 0. If the item does not occur in the sequence, return -1.

Use recursion.

🗝️

Given a set of items provided as a list, write a function that returns the power set of the given set.

Use recursion.

🗝️