summaryrefslogtreecommitdiff
path: root/prolog/problems/lists/conc_3/common.py
blob: e83c45439a3076f2ee49e3f485e71da3eea7212a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# coding=utf-8

id = 104
number = 12
visible = True
facts = None

solution = '''\
conc([], L, L).
conc([H|T], L2, [H|L]) :-
  conc(T, L2, L).
'''