great and clear explanation sir!!Thank you so much sir Not only this sir,each and every video was awesome and easily understandable
@kumarisuruchisuman89193 жыл бұрын
No one can explain like you ☺
@C__janhaviKadam5 ай бұрын
crisp and clear ! thankss
@CostaKazistov2 жыл бұрын
Really clear explanation. Definitely helped to understand this interesting HackerRank problem and the optimal solution. Many thanks!!
@pradeeps96332 жыл бұрын
bro you're just amazing👌👌.we want this type of teaching.
@Lion-st5g3s3783 жыл бұрын
10 out of 10 explanation 🌼️, tysm!
@MrMclit3 жыл бұрын
Great explanations, thank you
@pratyakshamaheshwari82693 жыл бұрын
Thank you Sir, you taught it very well.
@TheAxelgr Жыл бұрын
I love you man!
@rohitsaka3 жыл бұрын
Can you Please make it on Stock Span Problem
@nikoo283 жыл бұрын
Reach out to me on my email in channel description with the problem link.
@vaitheeswaranr21158 ай бұрын
StringLeftLength=n%strLength; Will be helpful?
@prativa810 Жыл бұрын
why is the time complexity O(1)? You have run the two loops in the code
@arjunmsit2 ай бұрын
I guess it's because the loop is run for size of input string and not on N. I'm this case it's 5 which can be dropped to 0(1)
@_JAGATHEESANV Жыл бұрын
Why can't we use this stringLeftLength=n%strLength;
@nikoo28 Жыл бұрын
you can
@spencersedano3 ай бұрын
how is this an easy question
@niharikamurulidhara70173 жыл бұрын
Sir....I tried the below code.. #include #include using namespace std; int main() { long long int n,count=0; int length,i; string sub_str; getline(cin,sub_str); cin>>n; length = sub_str.length(); if(length==1) { if(sub_str[i]=='a') { count=n; } else { count=0; } } // finding number of a's in substring else if(length>1) { for(i=0;i
@nikoo283 жыл бұрын
Try looking at the test cases I have in my code and debug your code with those cases. Maybe you can catch the problem
@_httpantwon2 жыл бұрын
It still wasn't clear
@nikoo282 жыл бұрын
Which part did you face a problem at? I can try to elaborate
@k16e2 жыл бұрын
Shouldn't you `Math.floor(n / sLength)` the number of reps?