Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 511 Bytes

Problem.md

File metadata and controls

26 lines (17 loc) · 511 Bytes

Palindrome Linked List

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

Example 1:

img

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

Example 2:

img

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