the first bruteforce solution will always give TLE because start is only incrementing when digit does not contain "9" . So the while loop will never terminate isn't it ?
@avidlearner7993 жыл бұрын
Nope, start
@akhildhingra83933 жыл бұрын
I really couldn't understand the log part. Can you help me explaining it a little bit detail?😕😕 I didn't understood base 9 base 10, the relation of this to problem. Thank you
@kunalsaha92393 жыл бұрын
And pls continue till day_30 :):)
@SaiprakashReddy3 жыл бұрын
Sure
@kunalsaha92393 жыл бұрын
Your linked in profile in not available!!!!!!!
@SaiprakashReddy3 жыл бұрын
Hello Kunal, Lol.. thanks for mentioning that , copy paste messed it up ... I have updated the links and thanks for the sub 🤝
@abbaammi58363 жыл бұрын
Bro iam watching these videos after 6 months how can I get ur 30 days videos
@ShivaniSingh-jt6kl3 жыл бұрын
Where is today's code?
@SaiprakashReddy3 жыл бұрын
Hey , these are being published on geeks for geeks youtube channel .
@nupurgarg28923 жыл бұрын
can you help with this code in C++
@kalyanchowdhury22403 жыл бұрын
vector v; while(N) { v.push_back(N%9); N /= 9; } long long ans = 0; for(int i=v.size()-1;i>=0;i--) ans = ans*10+v[i]; return ans;
@SaiprakashReddy3 жыл бұрын
Hello kalyan , This code works but you are using additional vector memory . You can do this in 0(1) space .
@nupurgarg28923 жыл бұрын
@@kalyanchowdhury2240 thank you
@prabhattiwari59643 жыл бұрын
@@kalyanchowdhury2240 while(N) { v.push_back(N%9); N /= 9; } what this will do
@kalyanchowdhury22403 жыл бұрын
@@prabhattiwari5964 Do dry run with any example..
@devendrapandey40593 жыл бұрын
What is Day1 problem?
@SaiprakashReddy3 жыл бұрын
Hello Devendra , I couldn't exactly recall the name but it was an easy problem related to array index manipulation .