-
Leetcode-api,一个使用TypeScript编写的完全支持异步的Leetcode答案API
资源介绍
leetcode
答案力码
API
使用
TypeScript
编写的
Leetcode
API,完全支持异步。
感谢项目的出色工作!
:red_heart:
安装
npm:
npm
i
leetcode-api-ts
纱线:
yarn
add
leetcode-api-ts
用法
(
async
(
)
:
Promise
<
void
>
=>
{
//
Login
const
leetcode
:
Leetcode
=
await
Leetcode
.
build
(
"your
username"
,
"yout
password"
,
EndPoint
.
US
//
or
EndPoint.CN
)
;
//
Get
a
special
problem
const
problem
:
Problem
=
new
Problem
(
"two-sum"
)
;
//
Fetch
more
properties
of
this
problem
await
problem
.
detail
(
)
;
//
Show
problem
content,
test
case,
code
snippet