summaryrefslogtreecommitdiff
path: root/prolog/problems/dcg/number_proper_2/common.py
blob: 191b70b27e754e500c8d1ffc46622005f2437ee7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
id = 166
number = 73
visible = False
facts = None

solution = '''\
number_proper --> digit166.
number_proper --> nzdigit166, num_next166.

num_next166 --> digit166.
num_next166 --> digit166, num_next166.

digit166 --> ([0] ; [1] ; [2] ; [3] ; [4] ; [5] ; [6] ; [7] ; [8] ; [9]).
nzdigit166 --> ([1] ; [2] ; [3] ; [4] ; [5] ; [6] ; [7] ; [8] ; [9]).
'''