MCPcopy Create free account
hub / github.com/austingebauer/go-leetcode / MovingAverage

Struct MovingAverage

moving_average_from_data_stream_346/solution.go:3–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package moving_average_from_data_stream_346
2
3type MovingAverage struct {
4 q []int
5 size int
6 sum int
7}
8
9/** Initialize your data structure here. */
10func Constructor(size int) MovingAverage {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected