Two Pointers Linked List Intermediate Implement the sortLinkedListValues method that sorts linked list values and returns the sorted list. Solved
Two Pointers Linked List Intermediate Implement the reorderLinkedListValues method that reorders linked list values in first-last alternating order. Solved
Two Pointers Linked List Intermediate Implement the intersectionLinkedListValue method that returns the first common value between two linked lists. Solved
Two Pointers Linked List Intermediate Implement the addTwoNumbersLinkedList method that adds two numbers represented by linked lists and returns the result list. Solved
Two Pointers Linked List Learner Implement the palindromeLinkedListCheck method that checks whether the linked list values form a palindrome. Solved
Two Pointers Linked List Learner Implement the middleNodeLinkedList method that returns the value stored at the middle node of the linked list. Solved
Two Pointers Linked List Intermediate Implement the removeNthNodeFromEnd method that removes the nth node from the end and returns the updated list values. Solved
Two Pointers Linked List Learner Implement the mergeTwoSortedLinkedLists method that merges two sorted linked lists and returns the sorted values. Solved
Two Pointers Linked List Intermediate Implement the detectCycleLinkedListValues method that checks whether the linked list has a cycle at the given position. Solved
Two Pointers Linked List Learner Implement the reverseLinkedListInterview method that returns linked list values after reversing the list. Solved