def main(): drawing = True starLis = [] while 1: if drawing: try: line = input() lis = line.split(',') lis = [int(i) for i in lis] UnicursalPolygon(lis).draw(save=True) except EOFError: break else: try: line = input() lis = line.split(',') lis = [int(i) for i in lis] a = UnicursalPolygon(lis) b = UnicursalPolygon(inverse_0(lis)) try: tmp = a.is_star() tmp2 = b.is_star() except: print("b failed is_star()," + str(b.perm)) continue if tmp and tmp2: print("star: {} inverses into a star {}".format(str(lis),str(b.perm))) starLis.append(a) starLis.append(b) elif tmp: print("star: {} does not inverse into a star {}".format(str(lis),str(b.perm))) elif tmp2: print("non-star: {} inverses into a star {}".format(str(lis),str(b.perm))) else: print(str(lis) + " neither are stars: " + str(unicursalpolygon.inverse_0(lis))) except EOFError: break for perm in starLis: perm.draw()
#!/usr/bin/env python3 from unicursalpolygon.models.unicursalpolygon import UnicursalPolygon from unicursalpolygon.utils import permutation_to_standard_0 if __name__ == "__main__": while 1: try: lis = [int(i) for i in input().split(',')] res = {True:[],False:[],None:[]} for i in range(len(lis)): tmp = list(lis) x = tmp.pop(i) to_check = permutation_to_standard_0(tmp) tmp = UnicursalPolygon(to_check) try: res[tmp.is_star()].append(x) except: res[None].append(x) print(lis,res[False],res[True]) except EOFError: break