MCPcopy
hub / github.com/seanprashad/leetcode-patterns / Question

Interface Question

src/types/question.ts:7–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5}
6
7export interface Question {
8 id: number;
9 title: string;
10 slug: string;
11 pattern: string[];
12 difficulty: "Easy" | "Medium" | "Hard";
13 premium: boolean;
14 companies: Company[];
15}
16
17export interface QuestionsData {
18 updated: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected