I have a list, which looks like -> [[[7, 8, 9], [7, 8, 9]]], I want to become follow example,
[[[7,8,9],[7,8,9]]] -> [[7,8,9],[7,8,9]] is this possible?
It is possible:
unpack([Ls], Ls).
e.g.
?- unpack([[[7, 8, 9], [7, 8, 9]]], Answer).
Answer = [[7, 8, 9], [7, 8, 9]]