Easy
Given the head of a singly linked list, return true if the sequence of values reads the same forwards and backwards. (The judge passes a plain acyclic list; pos is always -1.)
Input: head = [1,2,2,1] Output: true
Input: head = [1,2] Output: false