Skip to main content
Back to problems
#635
Medium Algorithms

Design log storage system

Hash Table String Design Ordered Set
59.5% acceptance
Mar 31, 2026
494
230
You are given several logs, where each log contains a unique ID and timestamp. Timestamp is a string that has the following format: Year:Month:Day:Hour:Minute:Second, for example, 2017:01:01:23:59:59. All domains are zero-padded decimal numbers. Implement the LogSystem class: LogSystem() Initializes the LogSystem object. void put(int id, string timestamp) Stores the given log (id, timestamp) in your storage system. int[] retrieve(string start, string end, string granularity) Returns the IDs of the logs whose timestamps are within the range from start to end inclusive. start and end all have the same format as timestamp, and granularity means how precise the range should be (i.e. to the exact Day, Minute, etc.). For example, start = "2017:01:01:23:59:59", end = "2017:01:02:23:59:59", and granularity = "Day" means that we need to find the logs within the inclusive range from Jan. 1st 2017 to Jan. 2nd 2017, and the Hour, Minute, and Second for each log entry can be ignored.

Solution

Rust
Time O(2^n)
Space O(n)
LeetCode
solution.rs
struct LogSystem {
  logs: Vec<(i32, String)>,
}

impl LogSystem {
  fn new() -> Self {
    LogSystem { logs: Vec::new() }
  }

  fn put(&mut self, id: i32, timestamp: String) {
    self.logs.push((id, timestamp));
  }

  fn retrieve(&self, start: String, end: String, granularity: String) -> Vec<i32> {
    let idx = match granularity.as_str() {
      "Year" => 4,
      "Month" => 7,
      "Day" => 10,
      "Hour" => 13,
      "Minute" => 16,
      "Second" => 19,
      _ => 19,
    };
    let s = &start[..idx];
    let e = &end[..idx];
    self.logs.iter()
      .filter(|(_, ts)| {
        let t = &ts[..idx];
        t >= s && t <= e
      })
      .map(|(id, _)| *id)
      .collect()
  }
}