登录 注册
当前位置:主页 > 资源下载 > 5 > Leetcode-api,一个使用TypeScript编写的完全支持异步的Leetcode答案API

Leetcode-api,一个使用TypeScript编写的完全支持异步的Leetcode答案API

  • 更新:2024-07-27 23:08:32
  • 大小:53KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

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