3.0.2 • Published 3 years ago

maghribnode v3.0.2

Weekly downloads
1
License
ISC
Repository
-
Last release
3 years ago

node-module

A very simple node package that allows you to merge sort a list.

Features

  • Merge Sort

Installation

npm i maghribnode

Usage

  const { merge_sort } = require('maghribnode');

  let items = [3, 10, 1, 0, 28, 17, 8, 100]
  let result = merge_sort(items)
  console.log(result) # [0, 1, 3, 8, 10, 17, 28, 100]
3.0.2

3 years ago

3.0.1

3 years ago

3.0.0

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago