FunctionTestLRUCache_3*
["LRUCache","put","get","put","get","get"]
[[1],[2,1],[2],[3,2],[2],[3]]
*/
lru_cache_146/solution_test.go:33
FunctionTestLRUCache_4*
["LRUCache","put","put","get","put","put","get"]
[[2],[2,1],[2,2],[2],[1,1],[4,1],[2]]
*/
lru_cache_146/solution_test.go:47
FunctionTestLRUCache_5*
["LRUCache","put","put","put","put","get","get"]
[[2],[2,1],[1,1],[2,3],[4,1],[1],[2]]
Output: [null,null,null,null,null,1,-1]
Expected: [null,nul
lru_cache_146/solution_test.go:60
FunctionTestLRUCache_6*
["LRUCache","put","put","get","put","put","get"]
[[2],[2,1],[2,2],[2],[1,1],[4,1],[2]]
Output: [null,null,null,null,null,1,-1]
Expected: [null,nul
lru_cache_146/solution_test.go:78
FunctionTestLRUCache_7*
["LRUCache","get","put","get","put","put","get","get"]
[[2],[2],[2,6],[1],[1,5],[1,2],[1],[2]]
*/
lru_cache_146/solution_test.go:92
FunctionTestLRUCache_8*
["LRUCache","put","put","put","put","get","get","get","get","put","get","get","get","get","get"]
[[3],[1,1],[2,2],[3,3],[4,4],[4],[3],[2],[1],[5,5],
lru_cache_146/solution_test.go:109