English | 简体中文
A simple program to get leetcode daily questions, currently only support to get question under the leetcode.cn
- simple, easy to use
- no runtime dependencies
npm install leetcode-daily-question
import {getTodayQuestion} from 'leetcode-daily-question';
getTodayQuestion()
.then(response => console.log(response))
.catch(err => console.error(err));
import {getQuestionByTitleId} from 'leetcode-daily-question';
const titleId = 'two-sum';
getQuestionByTitleId()
.then(response => console.log(response))
.catch(err => console.error(err));