package
0.0.0-20241123100617-79e0da2b8767
Repository: https://github.com/deanlogan/leetcode.git
Documentation: pkg.go.dev

# README

234. Palindrome Linked List

Given the head of a singly linked list, return true if it is a palindrome or false otherwise.

Example 1:
Image
Input: head = [1,2,2,1]
Output: true

Example 2:
Image
Input: head = [1,2]
Output: false

Constraints:
The number of nodes in the list is in the range [1, 10**5].
0 <= Node.val <= 9

Submission Screenshot

Image