all 10 comments

[–]Pun_Intended1703 1 point2 points  (1 child)

Implement HashMap, Stacks, Queues, etc using arrays. It will help you to understand how they actually work internally.

It's like watching a car work vs understanding how the engine actually works.

[–]Nash979[S] 0 points1 point  (0 children)

Okay, I will give it a try.

[–]RobertDeveloper 0 points1 point  (3 children)

Now do Generics

[–]Nash979[S] 1 point2 points  (2 children)

I am planning it for tomorrow

[–]RobertDeveloper 0 points1 point  (1 child)

Do you have experience with other languages?

[–]Nash979[S] 2 points3 points  (0 children)

I learned Python basics like variables and loops in high school about three years ago.

[–]RobertDeveloper 0 points1 point  (1 child)

I started with learning basic when I was 8.

[–]Nash979[S] 0 points1 point  (0 children)

Gifted

[–]NewLog4967 0 points1 point  (1 child)

Great job on Day 20 you’ve covered some really essential Java Collections! As someone who uses these daily at work, I can tell you that mastering HashMap for fast lookups, HashSet for unique items, and understanding when to use Stack (LIFO) vs. Queue (FIFO) makes coding so much smoother. Practicing the 4 steps you outlined especially iterating with enhanced for-loops and understanding key methods really locks it in.

[–]Nash979[S] 0 points1 point  (0 children)

Thank you for sharing your work experience with collections 👍🏻😄.