Skip to content

Instantly share code, notes, and snippets.

@mehedi-shafi
Created March 25, 2018 08:28
Show Gist options
  • Save mehedi-shafi/8750141c89ee9e9ba8f2d63d4d80c8ad to your computer and use it in GitHub Desktop.
Save mehedi-shafi/8750141c89ee9e9ba8f2d63d4d80c8ad to your computer and use it in GitHub Desktop.
AI Lab 06 File
member(X, [X|T]).
member(X, [H|T]):-
member(X, T).
findmin([], A, A).
findmin([H|T], M, Min):-
H < M,
findmin(T, H, Min).
findmin([H|T], M, Min):-
H >= M,
findmin(T, M, Min).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment