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

https://github.com/daveanthonyc/leetcode


https://github.com/daveanthonyc/leetcode

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Leetcode Practice

This repo contains Leetcode implementations of the list of topics in Neetcode's roadmap.
Found [here](https://neetcode.io/roadmap)

It also contains a Vitest testing suite to test the implementations.

# Problem list in roadmap
## Arrays & Hashing

**Easy**
* Contains Duplicate
* Valid Anagram
* Two Sum
* Valid Palindrome
* Valid Parenthesis
* Binary Search

**Medium**
* Group Anagrams

# Installation
1. Clone the repository
```bash
git clone git@github.com:daveanthonyc/Leetcode.git
```

2. Change directory to `Leetcode`
```bash
cd Leetcode
```

3. Install dependencies
```bash
yarn install
```

4.You can run the local development server
```bash
yarn dev
```

5. But you can also run the tests
```bash
yarn test
```