Leetcode Problem Dataset
Leetcode Dataset of 1,825 Problems
@kaggle.gzipchrist_leetcode_problem_dataset
Leetcode Dataset of 1,825 Problems
@kaggle.gzipchrist_leetcode_problem_dataset
This is data from 1,825 Leetcode problems and was last updated in April 2021. It contains the following info:
id: problem id
title: problem name
description: problem description
is_premium: whether the questions requires a premium account
difficulty: easy, medium, or hard
solution_link: how often the answer submitted is correct
acceptance_rate: how often the answer submitted is correct
frequency: how often the problem is attempted
url: url to the problem
discuss_count: how many comments are submitted by users
accepted: how many times the answer was accepted
submissions: how many times the answer was submitted
companies: which companies were tagged as having asked this specific problem
related_topics: related topics to the current problem
likes: how many likes the problem got
dislikes: how many dislikes the problem got
rating: likes / (likes + dislikes)
asked_by_faang: whether or not the question was asked by facebook, apple, amazon, google, or netflix
similar_questions: similar problems with problem name, slug, and difficulty
CREATE TABLE leetcode_dataset_lc (
"id" BIGINT,
"title" VARCHAR,
"description" VARCHAR,
"is_premium" BIGINT,
"difficulty" VARCHAR,
"solution_link" VARCHAR,
"acceptance_rate" DOUBLE,
"frequency" DOUBLE,
"url" VARCHAR,
"discuss_count" BIGINT,
"accepted" VARCHAR,
"submissions" VARCHAR,
"companies" VARCHAR,
"related_topics" VARCHAR,
"likes" BIGINT,
"dislikes" BIGINT,
"rating" BIGINT,
"asked_by_faang" BIGINT,
"similar_questions" VARCHAR
);Anyone who has the link will be able to view this.