Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Break Rings by gyahun_dash
from itertools import product
def break_rings(rings):
return min(map(len, map(set, product(*rings))))
April 10, 2015
Comments: