コード例 #1
0
 public RecentCounter()
 {
     _queue = new Queue <int>();
 }
コード例 #2
0
ファイル: Solution.cs プロジェクト: and85/leetcode
 /** Initialize your data structure here. */
 public HitCounter()
 {
     _timestamps = new Queue<int>();
 }