Time limit exceeded? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Time limit exceeded?

I'm making a game using c++, and have made a little options menu, which as of now can only take and react on the prompt to attack. but after printing ("you did X damage"), I get a little message at the bottom saying: "time limit exceeded". can anyone help? I don't want this coming back to haunt me https://code.sololearn.com/czi6tS2Zx3w9/?ref=app

23rd Jul 2017, 5:03 PM
X-1
X-1 - avatar
2 Answers
+ 1
While Chirag is right, something else is at play. What is causing the time limit exceeded is because your program crashes. Your attack_o function should return a string but you never return a string, all you do is output something but that's not the same as returning. cout << attack_o() << endl; then takes some garbage value that is interpreted as a string but because it's not a string it crashes.
23rd Jul 2017, 5:41 PM
Dennis
Dennis - avatar
+ 8
Sololearn won't allow your code to get executed for more than 5 seconds...... if it does so , it returns "Time Limit Exceeded"
23rd Jul 2017, 5:19 PM
cHiRaG GhOsH
cHiRaG GhOsH - avatar