| 1 | package moving_average_from_data_stream_346 |
| 2 | |
| 3 | type MovingAverage struct { |
| 4 | q []int |
| 5 | size int |
| 6 | sum int |
| 7 | } |
| 8 | |
| 9 | /** Initialize your data structure here. */ |
| 10 | func Constructor(size int) MovingAverage { |
nothing calls this directly
no outgoing calls
no test coverage detected