Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
nodups([2,3,2],Unique).
%commands to the interpreter are submitted from stdin input ('show input' box below) %'halt.' will be automatically appended to stdin input. %swi-prolog 7.2.3 program :- write('Hello, world!'). :- program. nodups([],[]). nodups([H|T],[H|Unique]) :- not(member(H,T)), nodups(T,Unique). nodups([H|T],Unique) :- member(H,T), nodups(T,Unique).
run
|
edit
|
history
|
help
0
HelloWorld
Tarea 2
Astar
1M horses with recursion
Prolog con arreglos
creación de código en prolog 1
Test1
ISAN completo
segundo ejercicio
Base de conocimiento con arreglos