Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add top interview 150 #156

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,8 @@ image_support = false,

- `update` updates cache

- `top_interview` opens top interview 150 questions

#### Some commands can take optional arguments. To stack argument values separate them by a `,`

- `Leet list`
Expand Down
19 changes: 19 additions & 0 deletions lua/leetcode/api/problems.lua
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,23 @@ function Problems.translated_titles(cb)
end
end

function Problems.top_interview_150(cb)
local query = queries.study_plan_detail

utils.query(query, { slug = "top-interview-150"}, {
callback = function(res, err)
if err then
return cb(nil, err)
end
local title_slugs = {}
for _, v in ipairs(res.data["studyPlanV2Detail"]["planSubGroups"]) do
for _, q in ipairs(v["questions"]) do
table.insert(title_slugs, q.title_slug)
end
end
return cb(title_slugs)
end
})
end

return Problems
12 changes: 12 additions & 0 deletions lua/leetcode/api/queries.lua
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,16 @@ queries.session_progress = [[
}
]]

queries.study_plan_detail = [[
query studyPlanDetail($slug: String!) {
studyPlanV2Detail(planSlug: $slug) {
planSubGroups {
questions {
title_slug: titleSlug
}
}
}
}
]]

return queries
8 changes: 8 additions & 0 deletions lua/leetcode/cache/problemlist.lua
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,14 @@ function Problemlist.update()
end, true)
end

---@return lc.cache.Question
function Problemlist.get_by_title_slugs(title_slugs)
local problems = Problemlist.get()
return vim.tbl_filter(function(e)
return vim.tbl_contains(title_slugs, e.title_slug)
end, problems)
end

---@return lc.cache.Question
function Problemlist.get_by_title_slug(title_slug)
local problems = Problemlist.get()
Expand Down
18 changes: 18 additions & 0 deletions lua/leetcode/command/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,21 @@ function cmd.qot()
end)
end

function cmd.top_interview_150()
require("leetcode.utils").auth_guard()

local problems = require("leetcode.api.problems")

problems.top_interview_150(function(slugs, err)
if err then
return log.err(err)
end
local p = require("leetcode.cache.problemlist").get_by_title_slugs(slugs)
local picker = require("leetcode.picker")
picker.question(p)
end)
end

function cmd.random_question(opts)
require("leetcode.utils").auth_guard()

Expand Down Expand Up @@ -651,6 +666,9 @@ cmd.commands = {
cmd.random_question,
_args = arguments.random,
},
top_iterview = {
cmd.top_interview_150,
},
desc = {
cmd.desc_toggle,

Expand Down