Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lencx/algorithms

🤖 Data structure and algorithms
https://github.com/lencx/algorithms

algorithms data-structures data-structures-and-algorithms

Last synced: about 2 months ago
JSON representation

🤖 Data structure and algorithms

Awesome Lists containing this project

README

        

# Data Structure And Algorithms

```bash
# 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

```bash
# 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](./src/two_sum) | Easy |
| 3 | [Longest Substring Without Repeating Characters](./src/longest_substring_without_repeating_characters) | Medium |