文件名称:leetcode分类-leetcode:打字稿LeetCode
文件大小:124KB
文件格式:ZIP
更新时间:2024-07-19 17:43:08
系统开源
leetcode 分类 LST (Leetcode Solutions with TypeScript) 我的 LeetCode 补全计划,旨在用 TypeScript 刷完所有的 LeetCode Problems :grinning_face_with_smiling_eyes: 解题 问题分类 模块 在所有问题中,会经常出现需要额外的代码块 // Definition for singly-linked list. function ListNode(val) { this.val = val; this.next = null; } // Definition for a binary tree node. function TreeNode(val) { this.val = val; this.left = this.right = null; } 在本项目中会实现一些模块,方便我们调试比如 和 之类的题目。具体使用方式请点击下面链接: 使用说明 依赖 TypeScript 需要 typescript@>=2.0 的支持,如果需要直接运行 TypeScript 脚本,还需要 ts-node 的支持 # 推荐全局安装 npm instal