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

https://github.com/marcobiedermann/leetcode

🎓 My attempt of solving LeetCode problems
https://github.com/marcobiedermann/leetcode

algorithms leetcode problem-solving problems solutions

Last synced: about 1 month ago
JSON representation

🎓 My attempt of solving LeetCode problems

Awesome Lists containing this project

README

          

# Leetcode

[![Build Status](https://img.shields.io/travis/com/marcobiedermann/leetcode)](https://travis-ci.com/marcobiedermann/leetcode)
[![codecov](https://img.shields.io/codecov/c/gh/marcobiedermann/leetcode)](https://codecov.io/gh/marcobiedermann/leetcode)
[![dependencies Status](https://img.shields.io/david/marcobiedermann/leetcode)](https://david-dm.org/marcobiedermann/leetcode)
[![devDependencies Status](https://img.shields.io/david/dev/marcobiedermann/leetcode)](https://david-dm.org/marcobiedermann/leetcode?type=dev)

My attempt of solving [Leetcode](https://leetcode.com/) problems in JavaScript.

## Table of Contents

- [Setup](#setup)
- [Usage](#usage)
- [License](#license)

## Setup

Install dependencies.

```sh
npm install
```

## Usage

### Format

Format code using [Prettier](https://prettier.io/).

```sh
npm run format
```

### Linting

Lint code using [ESLint](https://eslint.org/).

```sh
npm run lint
```

### Testing

Run tests using [Vitest](https://vitest.dev/) testing framework.

```sh
npm test
```

## License

[MIT](LICENSE) © [Marco Biedermann](https://github.com/marcobiedermann)