We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d68bfe4 commit e2e7131Copy full SHA for e2e7131
src/main/java/com/fishercoder/solutions/firstthousand/_146.java
@@ -5,7 +5,6 @@
5
import java.util.Map;
6
7
public class _146 {
8
-
9
public class Solution1 {
10
public class LRUCache {
11
/**
@@ -43,7 +42,7 @@ public void put(int key, int value) {
43
42
public class Solution2 {
44
45
46
- * The more verbose solution is to implement a doubly linked list yourself plus a map, i.e. LinkedHashMap.
+ * The more verbose solution is to implement a doubly linked list yourself plus a map.
47
* It's very straightforward to implement this, key notes here: https://docs.google.com/spreadsheets/d/1anN6L5OLhUFd1ANtqDdYY6tz2Ao2H1GESfpDiCfeWyM/edit#gid=0
48
* (search for the URL of this problem to find it.)
49
*/
0 commit comments