Exercises/#27 Palindrome Linked List
#27

Palindrome Linked List

EasyπŸ”— Linked Lists
60 XP

Problem

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

Examples

Input: 1β†’2β†’2β†’1
Output: true

Input: 1β†’2
Output: false
linked-listtwo-pointer
AI Assistantβ€” powered by AI

Unlock hints progressively β€” start gentle, go deeper only if needed.

πŸ’‘

Level 1: Gentle Nudge

A subtle direction

πŸ—ΊοΈ

Level 2: Approach

The algorithm to use

πŸ”

Level 3: Detailed

Step-by-step guidance

27 / 150

Your Solution

⚑ JavaScript

to save progress and use AI features