677. 键值映射
题目
解题思路
代码
题目实现一个 MapSum 类,支持两个方法,insert 和 sum:
MapSum() 初始化 MapSum 对象
void insert(String key, int val) 插入
2021-01-21