Interface ProblemList

interface ProblemList {
    questions: {
        acRate: number;
        difficulty: "Easy" | "Medium" | "Hard";
        freqBar: null;
        hasSolution: boolean;
        hasVideoSolution: boolean;
        isFavor: boolean;
        isPaidOnly: boolean;
        questionFrontendId: string;
        status: null | string;
        title: string;
        titleSlug: string;
        topicTags: {
            id: string;
            name: string;
            slug: string;
        }[];
    }[];
    total: number;
}

Properties

Properties

questions: {
    acRate: number;
    difficulty: "Easy" | "Medium" | "Hard";
    freqBar: null;
    hasSolution: boolean;
    hasVideoSolution: boolean;
    isFavor: boolean;
    isPaidOnly: boolean;
    questionFrontendId: string;
    status: null | string;
    title: string;
    titleSlug: string;
    topicTags: {
        id: string;
        name: string;
        slug: string;
    }[];
}[]

Type declaration

  • acRate: number
  • difficulty: "Easy" | "Medium" | "Hard"
  • freqBar: null
  • hasSolution: boolean
  • hasVideoSolution: boolean
  • isFavor: boolean
  • isPaidOnly: boolean
  • questionFrontendId: string
  • status: null | string
  • title: string
  • titleSlug: string
  • topicTags: {
        id: string;
        name: string;
        slug: string;
    }[]
total: number

Generated using TypeDoc