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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!