HashMap and  Map in Java
12:43
3 ай бұрын
Java Copy Constructor | Tamil
8:31
ArrayList in Java | Tamil
9:37
7 ай бұрын
Star Patterns in Java | Tamil
11:54
Пікірлер
@jagannathsingaravel3362
@jagannathsingaravel3362 5 күн бұрын
Super explaination bro 💯🔥🔥🔥
@cse_maanavan
@cse_maanavan 5 күн бұрын
🤝
@SampleGmail-p1y
@SampleGmail-p1y 6 күн бұрын
Super Bro. Epdi bro yosikirenga. Pah mass bro
@22CSEC58_SRERAMANA
@22CSEC58_SRERAMANA 10 күн бұрын
awesome work man
@cse_maanavan
@cse_maanavan 8 күн бұрын
Thank you Bro 👍
@KamalaManimekalai
@KamalaManimekalai 18 күн бұрын
Tree set
@MyMotiv-i2u
@MyMotiv-i2u 20 күн бұрын
Hi Bro, u code is working, but u could have made atleast one dry-run of your code for one complete entire example, it will be helpful for the viewers to understand better,Thank you
@cse_maanavan
@cse_maanavan 19 күн бұрын
Sure Bro, I will consider adding dry runs for future videos to make it easier to understand
@JosephS-k2p
@JosephS-k2p 26 күн бұрын
Bro ungaa name enna bro
@cse_maanavan
@cse_maanavan 25 күн бұрын
Mukesh
@Sanjay-sx3ej
@Sanjay-sx3ej 29 күн бұрын
carry again 0 ayduma?
@cse_maanavan
@cse_maanavan 27 күн бұрын
input list la values irukkurapo carry la value store agum suppose two listum empty agitta carry la irukkura value answer list add agidum loop vittu exit agidum so carry 0
@jeyaramr7043
@jeyaramr7043 29 күн бұрын
Great explanation very easy to understand bro
@VIGNESHR-w9h
@VIGNESHR-w9h Ай бұрын
color pencil use panni solli thanga bro
@cse_maanavan
@cse_maanavan Ай бұрын
Okay 👍
@KanagalingamJothi
@KanagalingamJothi Ай бұрын
Good thinking! Best wishes
@VEERAKIRUBANITHI
@VEERAKIRUBANITHI Ай бұрын
very simple and clear code sir thank you so much
@arunr8297
@arunr8297 Ай бұрын
Very understanding aguthu,random aa unga video pathen ,so start from scratch your videos. ❤🎉
@arunr8297
@arunr8297 Ай бұрын
Semma bro
@ADVAITHGCSE
@ADVAITHGCSE Ай бұрын
thank youuuuu
@sathishmjs6257
@sathishmjs6257 Ай бұрын
👌👌👌👌👌👌 super bro
@SANJAI692
@SANJAI692 Ай бұрын
ai bro continue panuga bro intha leetcode 75 um mudinga broo
@cse_maanavan
@cse_maanavan Ай бұрын
Okay bro👍
@dharandharan8223
@dharandharan8223 2 ай бұрын
Super teach method bro
@saravanasundar651
@saravanasundar651 2 ай бұрын
I am learning java backend dev.....i got the roadmap and progressing towards it but stuck in the loop of OOPS concepts brother could you help me to ease the concepts with some of your own resources Kindly reply and if possible create a discord channel for the learners to grow as a community
@cse_maanavan
@cse_maanavan 2 ай бұрын
Bro I will provide my resources for oop for ur better understanding..kindly text me on insta ( check the channel description ) and I have taken ur suggestion for grow up our community..👍
@madhupriyag4627
@madhupriyag4627 2 ай бұрын
Thanks lot sir, provide lot of videos like this sir.once you reach your goals and also your students
@4150_VASANTHP
@4150_VASANTHP 2 ай бұрын
Project super bro and project explanation also nice
@shonen_editzz9276
@shonen_editzz9276 2 ай бұрын
Bro vera yenda topic kuduthalum info tara matudhu only it give for tech,business, and sports why
@cse_maanavan
@cse_maanavan 2 ай бұрын
Bro try this " String apiurl = baseurl + "Category=" + cat + "&language=en&apikey=" + apikey;" change into String apiurl = baseurl + "category=" + cat + "&language=en&apikey=" + apikey; Capital "C" into small "c ". Now you can get these news also 1.business 2.entertainment 3.general 4.health 5.science 6.sports 7.technology.
@movieinformation8090
@movieinformation8090 2 ай бұрын
which platform are you using to excute this code
@cse_maanavan
@cse_maanavan 2 ай бұрын
Leetcode
@movieinformation8090
@movieinformation8090 2 ай бұрын
new sub😍
@movieinformation8090
@movieinformation8090 2 ай бұрын
usefulll video bro
@d.sountherrajan7571
@d.sountherrajan7571 2 ай бұрын
Bro i will support brooo❤
@_TYO_
@_TYO_ 3 ай бұрын
Big fan of your work bro
@mrdevilranjith506
@mrdevilranjith506 3 ай бұрын
Nice explanation bro ❤
@CS_ROOPESHVS
@CS_ROOPESHVS 3 ай бұрын
new learning about entrySet( ) in java spr broooo
@SuriyanVS
@SuriyanVS 3 ай бұрын
k=k%nums.length please explain this line
@cse_maanavan
@cse_maanavan 3 ай бұрын
check this one k = k % nums.length ensures that: - If you rotate an array more times than its length, it's the same as rotating it fewer times. - You only rotate the necessary number of times. Example: Array: [1, 2, 3, 4, 5] Length: 5 Rotating 7 times is the same as rotating 2 times (7 % 5 = 2) This optimization avoids unnecessary rotations, making the process more efficient.
@__Deva_63
@__Deva_63 3 ай бұрын
Ithoda time and space complexity yepdi kandupidikurathu
@cse_maanavan
@cse_maanavan 3 ай бұрын
On LeetCode, after submitting a solution, the platform shows the time complexity and space complexity results on the left side. Bro intha code la we use single for loop with size n so time complexity is O(n) then space complexity we use two vaiables so O(1)
@Ganesh-pv6gy
@Ganesh-pv6gy 3 ай бұрын
❤ great
@HareKRISHNAkumar-k7x
@HareKRISHNAkumar-k7x 3 ай бұрын
bro ennaku puriyala bro . . . . . .
@cse_maanavan
@cse_maanavan 3 ай бұрын
Problem or solution??
@lalithkumar.k5366
@lalithkumar.k5366 3 ай бұрын
Very helpful bro 🎉💥
@AravinthS-b6t
@AravinthS-b6t 3 ай бұрын
🔥🔥
@maghemaarivazhagan1151
@maghemaarivazhagan1151 4 ай бұрын
Really awesome bro
@53_snmugm.s55
@53_snmugm.s55 4 ай бұрын
Nice bro , y don't u give the code link in description
@cse_maanavan
@cse_maanavan 4 ай бұрын
Encourage self-trying, that's why not provided. But if need, I'll provide hereafter.
@M.J.Amjath
@M.J.Amjath 4 ай бұрын
thx bro
@petsforever5560
@petsforever5560 4 ай бұрын
Useful ❤
@pradeepklrahul4633
@pradeepklrahul4633 5 ай бұрын
Bro itha resume la add pannalama
@cse_maanavan
@cse_maanavan 5 ай бұрын
Add panlam bro..
@pradeepklrahul4633
@pradeepklrahul4633 5 ай бұрын
Spr bro❤..
@suryaannadurai1999
@suryaannadurai1999 5 ай бұрын
First explain the logic clearly.... Then code is easy
@cse_maanavan
@cse_maanavan 5 ай бұрын
Did u understand or not ?
@suryaannadurai1999
@suryaannadurai1999 5 ай бұрын
@@cse_maanavan not completely
@cse_maanavan
@cse_maanavan 5 ай бұрын
no issues... check the description for better understanding
@nithyashreenithyashree8981
@nithyashreenithyashree8981 5 ай бұрын
Tq anna❤
@arunsps
@arunsps 5 ай бұрын
Bro one doubt can i use your project in my resume ?
@cse_maanavan
@cse_maanavan 5 ай бұрын
Yes bro..why not 👍🏻
@arunsps
@arunsps 5 ай бұрын
@@cse_maanavan thanks intha madri neraya video podunga bro i can learn fron u explanation is clear . My dream also to be a java developer
@PARTHIPRASATH
@PARTHIPRASATH 5 ай бұрын
why we used static keyword in class student
@cse_maanavan
@cse_maanavan 5 ай бұрын
If we declare the Student class as static, it means the Student class can be used independently without needing to create an instance of StudentManagementSystem.
@Ganesh-pv6gy
@Ganesh-pv6gy 5 ай бұрын
@siveshsingaravelu8513
@siveshsingaravelu8513 5 ай бұрын
Need more videos 🎉
@naveenrajukandasamy346
@naveenrajukandasamy346 5 ай бұрын
Bro athu epadi print aguthu because if condition ula than print potrukom condition padi length 0 ana than print agum ana epadi elam print aguthu
@cse_maanavan
@cse_maanavan 5 ай бұрын
Print statement is base case bro..... It works recursive manner First input la string irukkum next oru oru character aa input la remove panni output la add pannum so input automatic aaa empty agum so length is equal to zero then output la irukkura ans print agidum If any doubt ping me on Instagram bro I'd available one channel about
@naveenrajukandasamy346
@naveenrajukandasamy346 5 ай бұрын
@@cse_maanavan romba thanks bro purinjiruchu vera dout iruntha kekurean bro
@naveenrajukandasamy346
@naveenrajukandasamy346 5 ай бұрын
@@cse_maanavanbro enaku recursion complete video venum bro tamil la ungaluku therinjchu ethachu iruka bro
@yasinsherif8875
@yasinsherif8875 5 ай бұрын
keep it up bro
@cse_maanavan
@cse_maanavan 5 ай бұрын
Sure..
@singaramsingatam7129
@singaramsingatam7129 5 ай бұрын
Need more videos...
@cse_maanavan
@cse_maanavan 5 ай бұрын
Sure
@shiva.g1898
@shiva.g1898 5 ай бұрын
Nice. But use board to explain the concept
@cse_maanavan
@cse_maanavan 5 ай бұрын
Okay...👍🏻