I have a following question:
Write a class that takes a series of integers from a generator that generates numbers one by one. Include two functions: 1- Sum 2- Average.
I know that yield statement is the choice in python if the generator needs to generate numbers one by one by returning at each step.
How would you guys do it in java? I somehow don't have any idea of how I can realize this
Thanks.