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/