[solved] Error(time limit exceeded) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

[solved] Error(time limit exceeded)

https://code.sololearn.com/cVXKzu3K2XTl/?ref=app In this code I am getting the message that "time limit exceeded" what does that mean???

5th Sep 2019, 12:39 PM
Arsenic
Arsenic - avatar
3 Answers
+ 4
Your while loop at line 22, it isn't incrementing the variable <i>. while i<=len(password_list): # increment <i> in this block (Edit) The Time Limit Exceeded message came because the loop runs infinitely, due to the loop counter <i> isn't getting incremented.
5th Sep 2019, 12:47 PM
Ipang
+ 4
Thanks @Ipang
5th Sep 2019, 1:02 PM
Arsenic
Arsenic - avatar
+ 2
You are very welcome Arsenic ✌
5th Sep 2019, 1:12 PM
Ipang