Question: ONLY USE PROLOG: Write the rules for a predicate tally(E,L,N), which succeeds if N is the number of occurrences of element E in list L.
ONLY USE PROLOG:
Write the rules for a predicate tally(E,L,N), which succeeds if N is the number of occurrences of element E in list L. The following query shows an example of using this predicate:
?- tally(3, [1,2,3,1,2,3], N).
N = 2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
