I am asking for help in basic Prolog, a language whose paradigms are difficult for me to grasp. I am very familiar with other languages (C++, Lisp, Java, Assembly, etc.) but am a complete novice with Prolog.
What needs to be solved - in basic English: given 2 parameters, find a corresponding number in a 2D Array.
The problem is a brainlessly easy puzzle on the web which asks you to pick a number, choose that number's color and then pick the house that contains your given number. The puzzle is set up such that there is only one number for each corresponding color/house combination.
What is currently in place:
function guess(Color, Houses) :-
<--Need what goes here -->
green(1, 15, 23, 24).
pink(2, 6, 10, 18).
etc...
houseA(2, 4, 7, 14).
etc...
The code must match the colors and houses to pick out the correct number. So for example, given "?- guess(pink, houseA)" should return "Your number is 2."
I have been writing down ideas on how to implement this in prolog and none of them get me any further. I do not know how I would implement if/else statements to check which color I should search, or how to check which numbers would correspond between house and color, or even how to "return" values!
It seems to me that I am missing a key point or...way of thinking about the language.
Any help would be appreciated. Thank you!