Your Explanation is very nice and easy to understand
@yusenpeng Жыл бұрын
Excellent explanation about the tricky "Z" case. I really appreciate it.
@probabilitycodingisfunis1 Жыл бұрын
Thank you so much @yusen peng
@probabilitycodingisfunis12 жыл бұрын
Time complexity -> O(LOG(N)) string ans = ""; while(N) { int rem = N%26; if(rem==0) { ans = "Z"+ans; N=N/26-1; } else { char c = 'A' + rem - 1; N/=26; ans = c+ans; } } return ans;
@anjalimishra2979 Жыл бұрын
I am an experience proffesional of 10 years, in testing just trying to learn dsa and algo, to add value in my skill set, this is something which i read in my academics but never thought it could be ralatable this way, very nice explaination. Thank you so much !!
@mdsaquibansari41232 жыл бұрын
Always search for your video only, no time waste as u come to the point very quickly and best explanation
@rahularora75762 жыл бұрын
Best explanation on youtube
@probabilitycodingisfunis12 жыл бұрын
Thanks!!
@AmanSharma-vb5jl2 жыл бұрын
You are very very awesome explainer even better than most of coaching institute guys
@probabilitycodingisfunis12 жыл бұрын
Thank you so much!!
@sahilanand302 жыл бұрын
Best explanation
@MTB_Bay_Area2 жыл бұрын
Fantastic, Thank you. you have deep understanding of math. I appreciate your help
@probabilitycodingisfunis12 жыл бұрын
You are most welcome
@harshafartale57752 жыл бұрын
Amazing Explanations! Whenever im stuck on leetcode, i always come to your channel to look for solutions or tips!. Please keep up the good work!
@shashnitjs7 ай бұрын
nice and nice work
@sunilbhenspaliya99312 жыл бұрын
simple and esay solution...
@Madsaam092 жыл бұрын
Well explained....
@bharathkumar58702 жыл бұрын
wow,thanks for explaining behind the scenes...
@amanprajapati86472 жыл бұрын
Nicely explained !!!!!! Can you tell me how you choose questions worth making a video ????
@probabilitycodingisfunis12 жыл бұрын
I usually make daily challenges from both Leetcode and GeeksforGeeks, let me know if you want any specific questions
@mdsaquibansari41232 жыл бұрын
You are too good
@somyatomar62922 жыл бұрын
Thanks a lot for an amazing explanation!!🤓
@probabilitycodingisfunis12 жыл бұрын
Welcome, glad it was helpful
@muskancreativity72 жыл бұрын
Can u please solve "step by step" question of interviewbit in maths section
@ashokdurunde18142 жыл бұрын
thanks alisha didi understood
@probabilitycodingisfunis12 жыл бұрын
Welcome, glad it was helpful!!
@kkumar072 жыл бұрын
can we get in logn
@probabilitycodingisfunis12 жыл бұрын
Its logN only because every time you are dividing by 26..