项目作者: lencx

项目描述 :
🤖 Data structure and algorithms
高级语言: Shell
项目地址: git://github.com/lencx/data-structure-and-algorithms.git
创建时间: 2020-08-07T01:55:29Z
项目社区:https://github.com/lencx/data-structure-and-algorithms

开源协议:MIT License

下载


Data Structure And Algorithms

  1. # Quickly create a template file by command
  2. # options: [-a/--author | -h/--help | -l/--lang(language) | -v/--version]
  3. # default: -a=lencx -l=js
  4. # directory name: use underscore
  5. ./new [-ahlv] directory_name

Test

  1. # rust
  2. cargo test
  3. # js
  4. # see: https://github.com/avajs/ava
  5. # npm run test [--tap]
  6. yarn test [--tap]

Problemset

  • rust test: cargo test
  • Difficulty(难度): Easy(简单) | Medium(中等) | Hard(困难)
# Title(题目) Difficulty(难度)
1 Two Sum Easy
3 Longest Substring Without Repeating Characters Medium