Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/khoi-truong/pyleetcode
Solution for LeetCode problems in Python
https://github.com/khoi-truong/pyleetcode
leetcode leetcode-python
Last synced: 8 days ago
JSON representation
Solution for LeetCode problems in Python
- Host: GitHub
- URL: https://github.com/khoi-truong/pyleetcode
- Owner: khoi-truong
- License: mit
- Created: 2022-05-20T09:42:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-12T03:44:18.000Z (over 1 year ago)
- Last Synced: 2024-11-16T02:13:34.183Z (2 months ago)
- Topics: leetcode, leetcode-python
- Language: Python
- Homepage:
- Size: 155 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
pyleetcode
-----------------
[![Unit tests](https://github.com/khoi-truong/pyleetcode/actions/workflows/unit-test.yml/badge.svg?branch=main)](https://github.com/khoi-truong/pyleetcode/actions/workflows/unit-test.yml)Solution for LeetCode problems in Python
## Getting Started
This project uses [commitlint](http://marionebl.github.io/commitlint/#/) to enforce [conventional commit](https://www.conventionalcommits.org/en/v1.0.0/#summary) message style. To install commitlint locally and add to git hook, run the following command:
```shell
$ npm install
```## Arrays and Hashing
- Contains Duplicate [Leetcode](https://leetcode.com/problems/contains-duplicate/)
## Two Pointers
- Valid Palindrome [Leetcode](https://leetcode.com/problems/valid-palindrome/)