Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 975 Bytes

File metadata and controls

29 lines (21 loc) · 975 Bytes

Data Structures & Algorithms in Java

🚀 A collection of classic coding interview problems solved in Java.
Includes detailed explanations, time/space complexity, and multiple approaches where applicable.

📁 Problem Categories

  • Linked Lists
  • Arrays
  • Strings
  • Recursion
  • Trees
  • Matrices
  • System Design (in progress)

✅ Sample Problems

Problem Category Technique Status
Remove Duplicates Linked List HashSet ✅ Done
Merge Two Sorted Lists Linked List Two Pointers ✅ Done
Add Two Numbers Linked List Simultaneous traversal 🔜
Group Anagrams Arrays/Hash Sorting + Map ✅ Done

🧠 Goal

This repository is part of my ongoing preparation for technical interviews, with emphasis on solid understanding and clean Java code.