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. 12071982

    find the median of a list

    thnx joel76 that makes much more sense for me than the prolog syntex
  2. 12071982

    find the median of a list

    Can anyone explain me how this routine works I want to know how routine understands if there is an even number of elements or odd number of elements. thanks median(!list,!median) median_2(!list,!list,!median) $clauses median(List, Median) :- median_2(List, List, Median). median_2([_]...
  3. 12071982

    disjoint in prolog

    I managed to do my prolog problem thanks to your help:) Thanks once again...much obliged :)
  4. 12071982

    disjoint in prolog

    thanks a lot for your help ..i think i can manage now :)
  5. 12071982

    disjoint in prolog

    Can anyone write a prolog routine for me for disjoint([1,2,3],[2,3,4],Ans) binds Ans to [1,4] coz though i managed to understand the concept, i dont know how to implement it by programming. I cant use reserved words found in prolog for my assignment. thnx lor
  6. 12071982

    disjoint in prolog

    Can anyone help me do such routine in prolog disjoint([1,2,3],[2,3,4],Ans) binds Ans to [1,4] thnx

Part and Inventory Search

Back
Top