This website works better with JavaScript
Domů
Procházet
Nápověda
Přihlásit se
radu
/
LaTeX-examples
Sledovat
1
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
2c4f3e97bf
Větve
Značky
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
prolog
/
delete.pl
delete.pl
96 B
Historie
Surový
1
2
3
remove([(X,A)|L],X,[(X,ANew)|L]) :- A>0, ANew is A-1.
remove([X|L],Y,[X|L1]) :- remove(L,Y,L1).