leetcode刷题四十三

Posted hhh江月

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode刷题四十三相关的知识,希望对你有一定的参考价值。

leetcode刷题四十三

题目叙述

https://leetcode-cn.com/problems/number-of-recent-calls/

写一个 RecentCounter 类来计算特定时间范围内最近的请求。

请你实现 RecentCounter 类:

RecentCounter() 初始化计数器,请求数为 0 。
int ping(int t) 在时间 t 添加一个新请求,其中 t 表示以毫秒为单位的某个时间,并返回过去 3000 毫秒内发生的所有请求数(包括新请求)。确切地说,返回在 [t-3000, t] 内发生的请求数。
保证 每次对 ping 的调用都使用比之前更大的 t 值。

来源:力扣(LeetCode)

题目解答

class RecentCounter:

    def __init__(self):
        se

以上是关于leetcode刷题四十三的主要内容,如果未能解决你的问题,请参考以下文章

leetcode刷题四十六

leetcode刷题四十五

leetcode刷题四十五

leetcode刷题四十一

leetcode刷题四十七

leetcode刷题四十七