Skip to content

lencx/algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Data Structure And Algorithms

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

Test

# rust
cargo test

# js
# see: https://github.com/avajs/ava
# npm run test [--tap]
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