summaryrefslogtreecommitdiff
path: root/prolog/problems/denotational_semantics/prog_8puzzle_2/common.py
blob: 4cc9c9e045fcabf8be781a8a8c2863e1e7742945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
id = 172
group = 'denotational_semantics'
number = 81
visible = True
facts = None

solution = '''\
prog_8puzzle --> [begin], instructs172, [end].

instructs172 --> instr172.
instructs172 --> instr172, instructs172.

instr172 --> [left].
instr172 --> [right].
instr172 --> [up].
instr172 --> [down].
'''