+ 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???
3 Antworten
+ 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.
+ 4
Thanks @Ipang
+ 2
You are very welcome Arsenic ✌