浏览专题题库
nowcoder_list_topic_problemsFetch the coding problem list for a specific Nowcoder topic by ID, with pagination and markdown or JSON output.
Instructions
获取牛客网特定专题(如面试TOP101、SQL篇)的题目列表。
常用 topicId:
295: 面试TOP101
199: SQL篇
196: 面试高频题目
182: 笔试大厂真题
383: 算法学习篇
389: 笔试模板必刷
372: 输入输出练习
260: 前端篇
301: Verilog篇
195: SHELL篇
Args:
topicId (string): 专题ID
page (number): 页码
response_format (string): 输出格式 - "markdown"(默认) 或 "json"
Returns: 专题题目列表,包含编号、标题、难度、通过率
Examples:
面试TOP101: { "topicId": "295", "page": 1 }
SQL篇(JSON格式): { "topicId": "199", "response_format": "json" }
Error Handling:
专题不存在时返回错误提示
页面加载超时时返回超时提示
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 页码,从1开始 | |
| topicId | Yes | 专题ID。常用: 295(面试TOP101), 199(SQL篇), 196(面试高频), 182(笔试大厂真题), 383(算法学习篇) | |
| response_format | No | 输出格式: 'markdown' 人类可读, 'json' 机器可解析 | markdown |