Question: Write a program split that takes a list L of integers and returns two lists the first one contains all elements in L that are
Write a program split that takes a list L of integers and returns two lists the first one contains all elements in L that are divisible by 5. The second list contains all other elements. For example,
? - split([1,3,5,10,12,15,23,30],A,B).
A = [5,10,15,30]
B = [1,3,12,23]
prolog programming
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
