牛客402413417号
牛客402413417号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客402413417号的博客
全部文章
/ 题解
(共2篇)
题解 | #设计LRU缓存结构#
class Solution: def __init__(self, capacity: int): # write code here self.capacity = capacity self.lru_dict = dict() self.lru_list = l...
Python3
2022-03-19
2
430
题解 | #加起来和为目标值的组合(二)#
代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 @param num int整型一维数组 @param target int整型 @return int整型二维数组 import json class Solution: # def init(self): #...
Python3
2022-03-15
1
544