0
Could anyone explain this solution
1 Answer
0
Itās a python generator. Typically, youāll save the generator in a variable, and then call next() on it.
Example: https://code.sololearn.com/c5xagCLt2OYB/?ref=app
More on Python Generators: https://www.geeksforgeeks.org/generators-in-python/