learn-prolog-now-exercises icon indicating copy to clipboard operation
learn-prolog-now-exercises copied to clipboard

chapter-11 subset problem

Open lengyijun opened this issue 4 years ago • 0 comments

cd chapter-11 
swipl  practical-session.pl  
powerset([a,b,c,d,e],P).
P = [[], [a], [a, b], [a, b, c], [a, b, c, d], [a, b, c|...], [a, b|...], [a|...], [...|...]|...].

lengyijun avatar May 13 '21 01:05 lengyijun