MCPcopy
hub / github.com/qiyuangong/leetcode / ping

Method ping

java/933_Number_of_Recent_Calls.java:7–12  ·  view source on GitHub ↗
(int t)

Source from the content-addressed store, hash-verified

5 }
6
7 public int ping(int t) {
8 q.add(t);
9 while (q.peek() < t - 3000)
10 q.poll();
11 return q.size();
12 }
13}

Callers

nothing calls this directly

Calls 2

addMethod · 0.45
peekMethod · 0.45

Tested by

no test coverage detected