---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-5-25d7e0ae4232> in <module>()
6 ]
7 [product_naive(*test_case) == list(product(*test_case))
----> 8 for test_case in test_cases]
<ipython-input-5-25d7e0ae4232> in <listcomp>(.0)
6 ]
7 [product_naive(*test_case) == list(product(*test_case))
----> 8 for test_case in test_cases]
<ipython-input-4-e2e81cedeab9> in product_naive(*xs)
16
17 current_pos += 1
---> 18 indices[current_pos] += 1
19 else:
20 indices[current_pos] += 1
IndexError: list index out of range