-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
Here is my code for the problem:
def find_matching(L, pattern):
l = []
for x,y in enumerate(L):
if pattern in y:
l.append(x)
return l
def main():
pass
if __name__ == "__main__":
main()
https://tmc.mooc.fi/paste/3_8DTPnsqpNZZkXjE9JznQ
I get an error : test.test_find_matching.FindMatching.test_calls
maximum recursion depth exceeded while calling a Python object
The two other are corrects, when i try my code in IDLE everything work, I have trouble seeing where the problem comes from.
Metadata
Metadata
Assignees
Labels
No labels