0.0.4 • Published 11 months ago

leetcode-daily-question v0.0.4

Weekly downloads
-
License
Apache 2.0
Repository
github
Last release
11 months ago

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

Use Cases

Get the daily question

import {getTodayQuestion} from 'leetcode-daily-question';
getTodayQuestion()
.then(response => console.log(response))
.catch(err => console.error(err));

Get the title according to the title

import {getQuestionByTitleId} from 'leetcode-daily-question';
const titleId = 'two-sum';
getQuestionByTitleId()
.then(response => console.log(response))
.catch(err => console.error(err));
0.0.4

11 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago