+ 3
What the mean of 'time limit exceed', when have not any errors in program?
1 Odpowiedź
+ 3
One possibility is an infinite loop or recursion. Another is a finite but combinatorially high number of cases being handled that exceeds the timeout set by SL. Another is a request made by your program to an external database or server that is taking too long. There could be other possibilities.