MCPcopy Index your code
hub / github.com/LeetCode-OpenSource/vscode-leetcode / IProblem

Interface IProblem

src/shared.ts:73–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73export interface IProblem {
74 isFavorite: boolean;
75 locked: boolean;
76 state: ProblemState;
77 id: string;
78 name: string;
79 difficulty: string;
80 passRate: string;
81 companies: string[];
82 tags: string[];
83}
84
85export const defaultProblem: IProblem = {
86 isFavorite: false,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected