30:00
Given the head of a singly linked list, return true if it is a palindrome or false otherwise.
The number of nodes is in the range [1,105][1, 10^5][1,105].
0≤Node.val≤90 \leq \text{Node.val} \leq 90≤Node.val≤9
1
→
2
Find middle with slow/fast pointers