Answers for "how to check if list is the same list but in different order prolog"

0

prolog check if element in different lists are same

common_list([X],[X]).
common_list([X|Tail],Y):- member(X,Y).
common_list([X|Tail],Y):- common_list(Tail,Y).
Posted by: Guest on December-17-2020

Code answers related to "how to check if list is the same list but in different order prolog"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language