You make it Simple, In this World their are very few people who make things easy You are one of them,
@nikoo28 Жыл бұрын
thank you so much
@Ahmed_Salah00 Жыл бұрын
bro I'm speechless! perfect!!
@nikoo28 Жыл бұрын
Thank you so much 😀
@rajakabdul64075 ай бұрын
Hae bro Can u explain What is Math.abs(i)
@nikoo285 ай бұрын
it gets the absolute value. Example: Math.abs(-1) = 1 Math.abs(1) = 1
@deepika84013 жыл бұрын
I am able to solve problems because of you
@vikrantkambli9265 Жыл бұрын
your explanation is crystal clear..thank you so much bro..
@nikoo28 Жыл бұрын
So nice of you
@BabyKrishna01 Жыл бұрын
Concept is clear with the video, please explain the program itself as well, why you are taking int c array or like thi
@nikoo28 Жыл бұрын
the solution explains why we need the array. :) do you have a specific doubt? i can help
@Philthyyy3 жыл бұрын
Very detailed explanation. Thank you for your time and insight.
@maheshguttedar36202 жыл бұрын
Very detailed explanation.
@manishkawale4037 Жыл бұрын
Great Explanation.
@davidlazaro31432 жыл бұрын
What an amazing video 🥰
@92akky Жыл бұрын
Nice explanation
@nikoo28 Жыл бұрын
Thanks and welcome
@rmukeshverma8724 Жыл бұрын
int n1{s1.size()}; int n2{s2.size()}; int result{}; vector sr1(26); vector sr2(26); for(int i=0; i < n1; ++i) { sr1[abs('a'-s1[i])] +=1; } for(int i=0; i < n2; ++i) { sr2[abs('a'-s2[i])] +=1; } for(int i = 0; i < 26; ++i) { result += abs(sr2[i]-sr1[i]); } return result; why it's incorrect?
@stonedcodingtom90972 жыл бұрын
Great video
@vandanabanny75502 жыл бұрын
excellent thank you :)
@tamao14733 жыл бұрын
Thanks
@taherkp73213 жыл бұрын
Hi. Just a question here, why are doing (s1.char(i) - 'a' ) here? what is the significance of 'a'. Thanks
@nikoo283 жыл бұрын
We want to index each character in alphabet. So ‘a’ = 0, ‘b’ = 1, ‘c’ = 2, ‘d’ = 3…and so on. With this statement we calculate this index. If charAt(i) is ‘a’ then we will get ‘a’ - ‘a’ = 0. This position is now used in array. If charAt(i) = ‘k’. Then ‘k’ - ‘a’ = 10 We get position 10 of array. Does this clear your doubt?
@taherkp73213 жыл бұрын
@@nikoo28 Yes.. Thanks
@Grammar-EN Жыл бұрын
bro in which language u explained
@nikoo28 Жыл бұрын
this is in JAVA
@pratyakshamaheshwari82693 жыл бұрын
int makeAnagram(string a, string b) { int *c = new int(26); for(int i=0;i
@kirannaik4417 Жыл бұрын
total = total + abs(c[i]) ; I think you had found the mistake..
@VishalEdu038 ай бұрын
.c[s1.charAt(i) - 'a '] ++ ..anyone can explain using for loop ...