Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Obvious solution in Clear category for Break Rings by veky
from itertools import product
break_rings = lambda rings: min(len(set(cuts)) for cuts in product(*rings))
July 1, 2015
Comments: