1 2 3 4 5 6 7 8 9 10 11 12
# coding=utf-8 id = 110 number = 17 visible = True facts = None solution = '''\ dup([], []). dup([H|T], [H,H|TT]) :- dup(T, TT). '''