跳至主要內容

933. 最近的请求次数

T4mako算法设计队列数据流小于 1 分钟

933. 最近的请求次数

简单

题目描述open in new window

class RecentCounter {

    List<Integer> record = new ArrayList<>();

    public RecentCounter() {

    }
    
    public int ping(int t) {
        int res = 0;
        record.add(t);
        for (int i = record.size() - 1; i >= 0; i--) {
            if(record.get(i) <= t && record.get(i) >= t - 3000) res++;
            else return res;
        }
        return res;
    }
}
评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.15.5