# coding=utf-8 name = 'center/3' slug = 'find central points' description = '''\
center(Points, R, X/Y)
: X/Y
is a point in the list Points
that is at most R
away from all other points.
?- center([1.0/1.1, 2.0/2.1, 3.0/3.1, 4.0/4.1], 4.0, X/Y). X = 2.0, Y = 2.1 ; X = 3.0, Y = 3.1.''' hint = {}