Claude-skill-registry lc-list
List LeetCode problems by difficulty level (easy/medium/hard)
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/lc-list" ~/.claude/skills/majiayu000-claude-skill-registry-lc-list && rm -rf "$T"
manifest:
skills/data/lc-list/SKILL.mdsource content
LeetCode List
List LeetCode problems.
Usage
/lc-list - List all problems
/lc-list easy - List Easy problems only
/lc-list medium - List Medium problems only
/lc-list hard - List Hard problems only
Instructions
Run the appropriate leetcode-cli command based on the argument:
- No argument or "all":
leetcode list 2>/dev/null | head -30 - "easy":
leetcode list -q eL 2>/dev/null | head -30 - "medium":
leetcode list -q mL 2>/dev/null | head -30 - "hard":
leetcode list -q hL 2>/dev/null | head -30
Show the results to the user.