Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/debaghtk/leet2git
fetches solutions from leetcode
https://github.com/debaghtk/leet2git
algorithms-and-data-structures interview interview-preparation leetcode leetcode-solutions
Last synced: about 1 month ago
JSON representation
fetches solutions from leetcode
- Host: GitHub
- URL: https://github.com/debaghtk/leet2git
- Owner: debaghtk
- Created: 2022-06-27T10:35:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T18:13:20.000Z (2 months ago)
- Last Synced: 2024-10-22T09:30:12.804Z (2 months ago)
- Topics: algorithms-and-data-structures, interview, interview-preparation, leetcode, leetcode-solutions
- Language: Go
- Homepage:
- Size: 67.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Setup
Follow these steps to set up your LeetCode session for the project:
```
pip install -r requirements.txt
```* Log in to LeetCode using your Google account in a web browser.
* Open the browser's developer tools (usually F12 or right-click and select "Inspect").
* Go to the "Application" or "Storage" tab.
* Under "Cookies", find the cookie named "LEETCODE_SESSION".
* Copy the value of this cookie.* Create a new file named `.env` in the root directory of the project.
* Add the following line to the `.env` file, replacing the placeholder with the value you copied:```
LEETCODE_SESSION=your_leetcode_session_cookie_value
```**Note:** Make sure to keep your `.env` file private and do not share or commit it to version control systems.
## Project Information
The main Python script for this project was generated in Cursor text editor with the Claude-3.5-Sonnet model.
# LeetCode Solutions Statistics
| Topic | Count |
|:----------------------|--------:|
| Tree | 23 |
| Array | 23 |
| Hash Table | 9 |
| Graph | 7 |
| String | 7 |
| Math | 5 |
| Trie | 4 |
| Matrix | 4 |
| Linked List | 4 |
| Divide and Conquer | 2 |
| Stack | 2 |
| Heap (Priority Queue) | 2 |**Total number of solutions:** 92