#234
Palindrome Linked List
pupil · 395 · lc easy +24 · verified · 57.5% accepted · 18,241 likes · top 53%
Description
Given the head of a singly linked list, return true if the list reads identically from front to back and back to front, or false otherwise.
Example 1:
Input: head = [1,2,2,1]
Output: true
Example 2:
Input: head = [1,2]
Output: false
Code
1
2
3
4
5
6
7
8