You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Problem-
Adding Palindrome Linked List in the data structure.
Given the head of a singly linked list, return true if it is a palindrome. Describe the solution you'd like
Solution-
Using two pointer solution
Describe alternatives you've considered
Reversing the linked list: Alternative considered.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Problem-
Adding Palindrome Linked List in the data structure.
Given the head of a singly linked list, return true if it is a palindrome.
Describe the solution you'd like
Solution-
Using two pointer solution
Describe alternatives you've considered
Reversing the linked list: Alternative considered.
The text was updated successfully, but these errors were encountered: