Answers for "prolog finding the max from a list of facts"

0

prolog finding the max from a list of facts

most_wins(Id) :-
    wins(Id, W), \+ (wins(_, W1), W1 > W).
Posted by: Guest on May-24-2021

Code answers related to "prolog finding the max from a list of facts"

Browse Popular Code Answers by Language