@iflow-mcp/leetcode-mcp-server
Version:
MCP Server for LeetCode API (supports leetcode.com and leetcode.cn)
16 lines (15 loc) • 664 B
TypeScript
/**
* Programming languages officially supported by LeetCode for problem submissions.
* These language identifiers are used when filtering submissions or submitting solutions.
*/
export declare const PROGRAMMING_LANGS: string[];
/**
* LeetCode problem categories that can be used when searching for problems.
* These categories represent different domains of programming challenges.
*/
export declare const PROBLEM_CATEGORIES: string[];
/**
* LeetCode problem tags that can be used to filter problems by topic area.
* These tags represent specific algorithm techniques, data structures, or problem domains.
*/
export declare const PROBLEM_TAGS: string[];