Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Rotate Hole by blabaster
def rotate(fs, bb):
return [i for i in range(len(fs)) if all(fs[b - i] for b in bb)]
July 9, 2014
Comments: