An open API service indexing awesome lists of open source software.

https://github.com/swarnotaj003/leetcode---top-interview-150

Welcome to the repository for Java solutions to the LeetCode Top Interview 150 DSA problems! This repository is designed to prepare for coding interviews by providing clear and efficient solutions to commonly asked problems.
https://github.com/swarnotaj003/leetcode---top-interview-150

data-structures-and-algorithms interview-preparation java leetcode

Last synced: 3 months ago
JSON representation

Welcome to the repository for Java solutions to the LeetCode Top Interview 150 DSA problems! This repository is designed to prepare for coding interviews by providing clear and efficient solutions to commonly asked problems.

Awesome Lists containing this project

README

          

# LeetCode : Top Interview 150

## About

Welcome to the repository for Java solutions to the [LeetCode Top Interview 150 DSA problems](https://leetcode.com/studyplan/top-interview-150/)! This repository is designed to prepare for coding interviews by providing clear and efficient solutions to commonly asked problems.

## Usage

1) Navigate to the required topic under `src`
```
cd src/array_or_string
```

2) Compile the Java program
```
javac -d ../../bin MergeSortedArray.java
```

3) Navigate to the `bin` folder under the project root
```
cd ../../bin
```

4) Execute the generated class
```
java array_or_string.MergeSortedArray
```