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 Wanet Telecoms Ltd 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. LudoStroetenga

    Logigram in prolog

    can anyone help me to solve a logigram puzzle in prolog... i do not really know where to start. what i did : i created the variables. i created the boxes in a database. but after this i don't have a clue how to continue.
  2. LudoStroetenga

    Solving a puzzle

    S E N D M O R E --------- + M O N E Y (different letter, different numbers) splits([H|T], H, T). splits([H|T], X, [H|TX]) :- splits(T, X, TX). oplossing([S,E,N,D,M,O,R,E,M,O,N,E,Y]) :- splits([0,1,2,3,4,5,6,7,8,9], D, Ds), splits(Ds, E, Es), Y is (D+E) mod 10, C1 is (D+E) div 10...

Part and Inventory Search

Back
Top