A powerful library of typescript-based algorithmic tools.
English | 简体中文
npm i @fujia/ant
# or use yarn
yarn add @fujia/ant
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]
Learn more about using @fujia/ant:
@fujia/ant is MIT licensed.
Generated using TypeDoc