1.0.0 • Published 2 years ago

mergefunction v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Recursion

Solutions of TOP assignments

  • Fibonacci using Recursion and iteration
  • Merge Sort - sorting algorithm based on recursion
  • You can directly install the solution through your terminal.

Description

npm package for sorting your integer type array.

Installation

`npm i mergefunction --save`
```
import {mergeSort} from 'mergeSort';
let arr1 = [11,23,45,6];
mergeSort(arr1);
console.log(arr1) ;  // [6,11,23,45]

```