From 97a7d3c0264fcc9e23f6c19c1713fcec347dd7ef Mon Sep 17 00:00:00 2001 From: Jorge Gonzalez Date: Sun, 8 Oct 2017 22:06:29 -0400 Subject: [PATCH] Remove duplicate problem --- algorithms/linked-list.md | 1 - 1 file changed, 1 deletion(-) diff --git a/algorithms/linked-list.md b/algorithms/linked-list.md index 67cda73f..8dd1dbdd 100644 --- a/algorithms/linked-list.md +++ b/algorithms/linked-list.md @@ -10,4 +10,3 @@ Linked List - A question involving an API's integration with hash map where the buckets of hash map are made up of linked lists. - Given a singly linked list (a list which can only be traversed in one direction), find the item that is located at 'k' items from the end. So if the list is a, b, c, d and k is 2 then the answer is 'c'. The solution should not search the list twice. - How can you tell if a Linked List is a Palindrome? -- Implement a LRU cache with O(1) runtime for all its operations.