Like target is 150! Please do like if you have understood the explanation as well as the code!
@yashchandanshiv9172Ай бұрын
great explanation
@Algo_algaeАй бұрын
Bhaiya i m regularly watching your videos and i love the way how you explain all the questions from scratch..But it not neccessary that every video must be like near 20 min if you take more time 30 min/40 min it will be okay for us becoz what we want is to understand the concept in depth so that we can also solve similar questions in fututre. So i request you that please also explain concept which used in queestion and how to recognize that pattern in depth. thanks again for your valuable efforts and for your time that you r giving to us from your busy schedule ❤❤❤❤
@Algo_algaeАй бұрын
you haven't discussed O(1) approach which is given in editorial section
@NishantPandat-l3qАй бұрын
Nice explain sir
@opkrchauhan_1Ай бұрын
class Solution { public char findKthBit(int n, int k) { String str = getString(n); char ch=str.charAt(0); for(int i=0;i
@maniBraveАй бұрын
nice explanation
@rudrakshgupta1978Ай бұрын
CPP Solution class Solution { public: char fn(int len,int k){ if(len==1){ return '0'; } int half=len/2; int middle=half+1; if(k==middle){ return '1'; }else if(k