Stck span problem

error in code

hello @ayu2321
image
this loop will run for infinite time because u r not popping any thing from stack.

do this
while(!s.empty() && arr[s.top()] <= curPrice) {
s.pop();
}
now find span here.
if(s.empty() ) then span=day;
otherwise span=day-s.top()

check ur updated code here -> https://ide.codingblocks.com/s/257957

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.