* Fetch details about a specific problem
(titleSlug: string)
| 77 | * Fetch details about a specific problem |
| 78 | */ |
| 79 | async fetchProblem(titleSlug: string) { |
| 80 | return this.executeQuery(problemDetailsQuery, { titleSlug }); |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Search for problems matching criteria |
no test coverage detected