class CombinatoricalUtils:
# combo related algorithmic tools
def __init__(self):
self.result: list[str] = []
def _generatePermutations(self, lists: list[list[str]], result: list[str], depth: int, current: str):
# this function has a private modifier (the "_" makes it...