Check if a linked list is a Palindrome or not - using Python
Problem : Write a python program to check if a linked list is a palindrome or not. What is Palindrome? A palindrome can be a num…
Problem : Write a python program to check if a linked list is a palindrome or not. What is Palindrome? A palindrome can be a num…
As we've discussed in the previous post , this problem is almost the same as the previous but digits are stored in a forwar…
Problem: We have two numbers represented by linked lists, where each node contains a single digit. The digits are stored in rev…
Introduction Reverse a linked list is one of the most important linked list operations that every CS student has to practice w…
Problem : Remove duplicate nodes from a linked list. The list can be sorted or unsorted. Try to solve it most efficiently. Solut…
Introduction A link list is a data structure, that is a collection of nodes and each node is connected via a link. This is also …