Skip to content

Instantly share code, notes, and snippets.

@CPStagg
Created August 13, 2012 16:54
Show Gist options
  • Save CPStagg/3342486 to your computer and use it in GitHub Desktop.
Save CPStagg/3342486 to your computer and use it in GitHub Desktop.
% all_nth_members( [[a,b,c],[d,e,f],[g,h,i]], 2, X ).
% X = [b,e,h].
all_Nth_members( [], _, [] ).
all_Nth_members( [H|Rest], N, [This|RestFiltered] ) :-
nth1( N, H, This ),
all_Nth_members( Rest, N, RestFiltered ).
@Favorwilliams
Copy link

My Pleasure to write you,
My name is Favor Williams,
My email address is
( Favor24@live.com)
Am interested to know
more about you,
Contact me for my
photo and other
important issue via,

Favor24@live.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment