Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Krytikal

    Prolog Remove Duplicates

    I am very new to prolog and I was wondering if am on the right approach to my programs specifications. I need to remove the duplicates from a list. remove_duplicates([],_). remove_duplicates([X|XS], Y) :- member(X,Y), remove_duplicates(XS,Y), !. remove_duplicates([X|XS], Y) :-...

Part and Inventory Search

Back
Top