Question: Write the following predicates in SWI-Prolog. min. Given two parameters, the first one being a list of numbers, returns the minimum value in the list
Write the following predicates in SWI-Prolog.

min. Given two parameters, the first one being a list of numbers, returns the minimum value in the list in the second parameter 3) min (3, 3, 8, 9, 2, 9, 2], X) X=2 min ([7], X). 4)palindrome. Takes one parameter as a list, returns true if palindrome else false. (you are not allowed use the built in reverse predicate) palindrome (I madaml) true. palindrome(Icatl) false
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
