This code can not get me subsets it's always giving false as a result
possibleSubset([], []).
possibleSubset([H|T], [H|NT]):-
possibleSubset(T, NT).
possibleSubset([_|T], NT):-
possibleSubset(T, NT).
what to do then ? I have a project and I must submit it tomorrow so please help me as fast as you can