Thanks, great explanation. Keep it up the good work
Жыл бұрын
This is one of the best logic. Have never seen in any site.
@tushardeurmalle5722 Жыл бұрын
Thanks Its very nice logic to find out duplicate cout
@sayedfurqan51024 ай бұрын
well explained bro.. Great
@marotipanchal2880 Жыл бұрын
you can also use trim() method instead of replace
@digitallearning-29 Жыл бұрын
Thanks a lot sir, and wish you all the very best.
@WriteCodeWithPrince Жыл бұрын
So nice of you
@soorajnair34999 ай бұрын
Thank You sir great explaination
@omkar55772 жыл бұрын
The best Explanation I've ever seen..Thanks alot..❤❤
@prasadshimpi7921Ай бұрын
you can solve with string not required to convert into array
Жыл бұрын
if(count>1) { map.put(arr[i], count); } If you apply this logic then we will get only duplicate characters count.
@kiransingh82392 жыл бұрын
Best implementation,thanks a lot
@mohammadsalma99963 жыл бұрын
Super explanation sir do more videos on java developer
@dibyashreedash41833 жыл бұрын
Sir you are the best teacher in my life i never see this type of explanation in coding ❤️ thankew so much sir 🙏🙏
@ateeqhalikhan40122 жыл бұрын
thanks alot..
@venkatakrishna49422 жыл бұрын
Thank you so much sir
@raviambadagatti50882 жыл бұрын
Hi Sir Very informative session , in above how it is printing the unique character because it may print like a=4 a=4 a=4 a=4 because arr[i] is traversing from 0 index to length
@prohealthtricks78742 жыл бұрын
Find recurrence of text ab means how to find s = " abababaabababaaa"
@pranav2003 Жыл бұрын
❤
@pradnyagawai16343 жыл бұрын
and please make videos on collection interfaces and classes
@pradnyagawai16343 жыл бұрын
can you explain the same question without having 2 for loop so that time complexity will reduce .
@kingsite83283 жыл бұрын
Getting error in Map map = new TreeMap() Error: Character cannot resolved to a type
@WriteCodeWithPrince3 жыл бұрын
import java.util.*; class TestMap { public static void main(String[] args) { Map map = new TreeMap(); map.put('c',10); System.out.println(map.get('c')); } } please write proper way. import
@gauravpatil63642 жыл бұрын
Sir why your use for loop inside another for loop ,or anyone can explain this pls if possible....?
@flynneugene2675 Жыл бұрын
what
@joyal77013 жыл бұрын
why treemap is used?
@manojpatil24572 жыл бұрын
So that order is maintained
@rahulwani9892 жыл бұрын
Array index outof bound exception it's showing
@WriteCodeWithPrince2 жыл бұрын
Please write code probably. It's will not give exception or error