Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lencx/algorithms
- Owner: lencx
- License: mit
- Created: 2020-08-07T01:55:29.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-22T14:18:23.000Z (over 2 years ago)
- Last Synced: 2024-05-23T05:35:27.827Z (8 months ago)
- Topics: algorithms, data-structures, data-structures-and-algorithms
- Language: Shell
- Homepage:
- Size: 22.5 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 |