Update README.md
Browse files
README.md
CHANGED
@@ -9,4 +9,29 @@ tags:
|
|
9 |
pretty_name: leet leet
|
10 |
size_categories:
|
11 |
- 1K<n<10K
|
12 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
pretty_name: leet leet
|
10 |
size_categories:
|
11 |
- 1K<n<10K
|
12 |
+
---
|
13 |
+
|
14 |
+
# LeetCode Scraper Dataset
|
15 |
+
|
16 |
+
This dataset contains information scraped from LeetCode. It is designed to assist developers in analyzing LeetCode problems, generating insights, and building tools for competitive programming or educational purposes.
|
17 |
+
---
|
18 |
+
## Dataset Contents
|
19 |
+
|
20 |
+
The dataset includes the following files:
|
21 |
+
|
22 |
+
**`problem_set.csv`**
|
23 |
+
- Contains a list of LeetCode problems with metadata such as difficulty, acceptance rate, tags, and more.
|
24 |
+
- **Columns**:
|
25 |
+
- `acRate`: Acceptance rate of the problem.
|
26 |
+
- `difficulty`: Problem difficulty (Easy, Medium, Hard).
|
27 |
+
- `frontendQuestionId`: Unique problem ID.
|
28 |
+
- `title`: Problem title.
|
29 |
+
- `titleSlug`: URL-friendly title for the problem. Construct the link this way: "https://leetcode.com/problems/{titleSlug}/description/"
|
30 |
+
- `topicTags`: Tags associated with the problem (e.g., Array, Hash Table).
|
31 |
+
- `hasSolution`: Indicates if the problem has an official solution.
|
32 |
+
- `hasVideoSolution`: Indicates if the problem has a video solution.
|
33 |
+
|
34 |
+
This is a data is part of a wider family of datasets, it includes a dataset with detailed description and other statistics about each problem and another one with 100 solutions sorted by "Most-Voted".
|
35 |
+
PS. questions are uploaded every week on the platform if you would like me to update the data or need more solutions for each problem, let me know.
|
36 |
+
Code used for scrapping can be accessed here: "https://github.com/timetooth/leetcode_scraper.git" star the repo if you like it.
|
37 |
+

|