Loading repository data…
Loading repository data…
samvel-aivazian / repository
Solutions to NeetCode problems using Java 21. This repository includes implementations of various data structures, algorithms, and design patterns, with a focus on clear, maintainable code and thorough testing.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
This repository contains solutions to NeetCode problems implemented in Java 21. The main goal of this repository is to provide a comprehensive collection of solutions for various data structures, algorithms, sorting techniques, and design patterns, showcasing clean code and thorough testing practices.
The repository is organized into multiple subprojects, each representing a different problem or topic.
Each subproject contains its own README.md with specific details about the implementation and testing.
Clone the repository and navigate to the specific subproject directory.
Follow the instructions in the subproject's README.md to compile and run the code.
git clone https://github.com/samvel-aivazian/neetcode.git
cd neetcode
Navigate to the subproject directory:
cd <subproject_directory>
Replace <subproject_directory> with the path to the specific subproject you want to run. For example:
cd core_skills/implement_data_structures/design_singly_linked_list
Compile the Java files:
javac -cp . org/samvelaivazian/<subproject>/*.java
Replace <subproject> with the package name specific to the subproject. For example:
javac -cp . org/samvelaivazian/linkedlist/*.java
Run the test class:
java -ea org/samvelaivazian/<subproject>/<TestClassName>
Replace <subproject> with the package name and <TestClassName> with the name of the test class
specific to the subproject. For example:
java -ea org.samvelaivazian.linkedlist.LinkedListTest
This project is licensed under the MIT License. See the LICENSE file for details.
This project was inspired by the problem description on NeetCode. The implementations and testing were done to deepen the understanding of data structures, algorithms, and design patterns in Java.