@fujia/ant
v0.1.0
Published
A powerful library of typescript-based algorithmic tools
Downloads
1
Readme
A powerful library of typescript-based algorithmic tools.
English | 简体中文
Installation
npm i @fujia/ant
# or use yarn
yarn add @fujia/ant
Usage
How to use? Simply to import useful functions from the library, as follows:
import { quickSort } from '@fujia/ant';
const data = [3, 6, 1, 9, 16, 5, 2, 7, 4];
quickSort(data); // return: [1, 2, 3, 4, 5, 6, 7, 9, 16]
Documentation
Learn more about using @fujia/ant:
License
@fujia/ant is MIT licensed.
References
- 《Re-learning Data structures and Algorithms》 - https://kaiwu.lagou.com/course/courseInfo.htm?courseId=185