The criminal is one of A, B, C and D.
A says: "It's not me"
B says: "It's D"
C says: "It's B"
D says: "It's not me"
And we know that only one of them tells the truth.
Who is the one? I want to solve it by using Prolog.
It's an interview question.
|
|
One-liner solution
|
|||||||
|
|
Disclaimer: This is Xonix' solution. If you like it vote him up. But as it took me some head-scratching to figure out what was going on, I thought I might just as well offer my comments so others could benefit. At first, here is his solution as a proper clause:
And it goes like this: At first, he runs through the list of individuals (have to be lower case, so they're not variables). With each possible value of As a known constraint is the fact that only one of them is truthful, the sum of their truth values must be 1. On backtracking, Prolog makes the next binding for K, and runs through it again. Turns out the constraint is only satisfied if |
|||
|
|
|
Here is another solution which I find a bit less cryptic than Xonix's. Tested in SWI-Prolog.
Usage example:
|
|||
|
|
|
A similar problem and corresponding solution can also be found here: http://trac.logtalk.org/browser/trunk/examples/puzzles/jam_thief.lgt Like the solution posted by Kaarel, is possible to request a justification/explanation for the solution found. |
|||
|
|
|
I ran across this problem and wanted to give it a shot :
|
|||
|
|