https://github.com/daveanthonyc/leetcode
https://github.com/daveanthonyc/leetcode
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/daveanthonyc/leetcode
- Owner: daveanthonyc
- Created: 2024-03-26T03:17:30.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-01T07:23:49.000Z (almost 2 years ago)
- Last Synced: 2025-01-13T20:44:11.539Z (about 1 year ago)
- Language: TypeScript
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```