0.1.0 • Published 3 years ago

@fujia/ant v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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

  1. 《Re-learning Data structures and Algorithms》 - https://kaiwu.lagou.com/course/courseInfo.htm?courseId=185