Webeks.net - freelance programming
freelance programming - php, Joomla, Zend ...
Home :: Articles :: Programming :: Prolog :: Prolog odd / even length list function

Prolog odd / even length list function

Written by Miha
%oddLength(List)
oddLength([_]).
oddLength([_,_|Rest]):-
oddLength(Rest).

%evenLength(List)
evenLength([_,_]).
evenLength([_,_|Rest]):-
evenLength(Rest).

 

 


blog comments powered by Disqus