If a process happens in stages with choices, the total number of outcomes is the product:
Given a list of per-stage counts, return the total number of outcomes.
solve([3, 4, 2]) -> 24 # 3 learning rates x 4 batch sizes x 2 optimizers
Sign in to write and run your own code.
solve(...)