(data)
| 11 | print("4 leetcode tag [tree|dynamic-programming|...] [easy|medium|hard] 显示tag指定难度所有题目") |
| 12 | |
| 13 | def get_problem_id(data): |
| 14 | id = data['data']['question']['questionId'] |
| 15 | fid = data['data']['question']['questionFrontendId'] |
| 16 | if util.is_int(fid): |
| 17 | id = fid |
| 18 | return id |
| 19 | |
| 20 | def check_leetcode_tags(): |
| 21 | print("--------------tags begin-------------") |
no outgoing calls
no test coverage detected