Skip to content

Commit e2e7131

Browse files
update 146
1 parent d68bfe4 commit e2e7131

File tree

1 file changed

+1
-2
lines changed
  • src/main/java/com/fishercoder/solutions/firstthousand

1 file changed

+1
-2
lines changed

src/main/java/com/fishercoder/solutions/firstthousand/_146.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import java.util.Map;
66

77
public class _146 {
8-
98
public class Solution1 {
109
public class LRUCache {
1110
/**
@@ -43,7 +42,7 @@ public void put(int key, int value) {
4342
public class Solution2 {
4443
public class LRUCache {
4544
/**
46-
* The more verbose solution is to implement a doubly linked list yourself plus a map, i.e. LinkedHashMap.
45+
* The more verbose solution is to implement a doubly linked list yourself plus a map.
4746
* It's very straightforward to implement this, key notes here: https://docs.google.com/spreadsheets/d/1anN6L5OLhUFd1ANtqDdYY6tz2Ao2H1GESfpDiCfeWyM/edit#gid=0
4847
* (search for the URL of this problem to find it.)
4948
*/

0 commit comments

Comments
 (0)