This channel is better than reading from websites 🔥🔥🔥🔥🔥
@jaycutezt Жыл бұрын
what a great explanation 🔥 direct to the point and gave right examples. awesome. Worth of time.
@skeythamizh179 Жыл бұрын
Sir you're teaching extraordinary 🎉
@rajarajacholan1038 Жыл бұрын
Excellent work sir .
@tamizhazhagan-jaishreekris2199 Жыл бұрын
Wonderful explanation brother ❤❤❤
@thenappansomasundaram84003 жыл бұрын
Very Good Explanation Sir, Thanks a lot
@Ady_NXT10 ай бұрын
Sir hash set,linkedhash set la heterogeneous objects allowed ah?
@Naveen_diya Жыл бұрын
Balanced tree la, top to bottom thaan varum. Values a rotate pannuvom, balance factor cheak panni😊
@thenappansomasundaram84003 жыл бұрын
Sir, I have tried with another function descendingSet() for printing the element in descending order
@lovethelife505411 ай бұрын
Is there descending order in set types
@susilaharan43412 жыл бұрын
U r super teacher sir... Good explanation...
@sinthiyasaroja38763 жыл бұрын
Good explanation..
@saravanan335 Жыл бұрын
Super explanation
@sujithajanardhanan3238 Жыл бұрын
sir task program kidaikuma
@muralidharan52722 жыл бұрын
Hashset ascending order tree set use panni Panna mudiyuma sollunga sir video highlights pannunga sir
@blackopplays4263 жыл бұрын
Linkedhashset constructor lah ll ah pass pandrom lah sir....Athu ella collection kum possible ah illa...only for set ku mattum thaana athum set lah linkedhashset ku mattum thaana..sir...
@sajithras21453 жыл бұрын
Very nice sir
@user-bb7ie9gu3v Жыл бұрын
Bro etha la max and minimum value eppadi edukka mudium sollunga
@user-bb7ie9gu3v Жыл бұрын
Sollunga bro
@jeyamuthumech3 жыл бұрын
Dear sir, can we create String, variable In Set topic in Treeset class
@selvarajpandurangan30182 жыл бұрын
Super sir
@amazingworks38643 жыл бұрын
Sir overloading hascode puriyala ! Pls put separate video for overloading equals, hascode ! Please sir
@breathmadrid98233 жыл бұрын
Good sirrr
@seethalakshmi54073 жыл бұрын
thank u anna..
@prabuiyyappan51382 жыл бұрын
may i speak to u
@sujiths58413 жыл бұрын
Voice low
@prabuiyyappan51382 жыл бұрын
how can I reach u
@PayilagamChennai2 жыл бұрын
For any query you can reach out to Logesh 8344777333
@naveenthiyagu98836 ай бұрын
import java.util.ArrayList; import java.util.Scanner; import java.util.TreeSet; public class handson { public static void main(String[] args) { ArrayList al = new ArrayList(); Scanner sc = new Scanner(System.in); System.out.print("Enter value = "); int val = sc.nextInt(); System.out.println("Enter user input"); String s="no"; for (int i = 0; i < val; i++) { int it = sc.nextInt(); al.add(it); } System.out.println(al); TreeSet t1 = new TreeSet(al); System.out.println("Arraylist + Treeset : " + t1); System.out.println(t1.size()); } } Doubt: How to give user value as "NO" ? because we add integer values only in the arraylist by using scanner. If we want to compare the user (value == No ) int ==String we cant do it right? Then how to give this condition? Can anyone explain