0.1.1 • Published 8 months ago

@unify-js/data-algo-kit v0.1.1

Weekly downloads
-
License
-
Repository
-
Last release
8 months ago

@unify-js/data-algo-kit

A toolkit of data structures and algorithms for JavaScript.

  • ESM only
  • Written in TypeScript

Installation

npm install @unify-js/data-algo-kit

Examples

import { Dequeue } from "@unify-js/data-algo-kit";

const deque = new Deque<number>();

deque.addFirst(1);
deque.addLast(2);

deque.removeFirst();
deque.removeLast();
0.1.1

8 months ago

0.1.0

9 months ago