Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Break Rings by wrap
from itertools import product
def break_rings(rings):
return min([len(set(x)) for x in product(*rings)])
Sept. 24, 2015
Comments: