上次编辑到这里,代码来自缓存 点击恢复默认模板
class LogSystem {
public:
LogSystem() {
}
void put(int id, string timestamp) {
}
vector<int> retrieve(string start, string end, string granularity) {
}
};
/**
* Your LogSystem object will be instantiated and called as such:
* LogSystem* obj = new LogSystem();
* obj->put(id,timestamp);
* vector<int> param_2 = obj->retrieve(start,end,granularity);
*/