check if a linked list is pallendrom.
Sigiloso
do below steps:- 1) get the middle node of linked list and total number of nodes in O(n) . 2) get a stack of size n/2 3) start pushing node values of linked list to stack till(n-1/2 th node if n is odd else n/2 th node) 4) pop an element from stack and compare with next remaining node of the linked list after middle node. 5) if all values are same till stack is empty then palindrome else not.