npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

binary-merge

0.0.0

@mikolalysenko

npmRepoSnykSocket
Downloads:659
$ npm install binary-merge
DailyWeeklyMonthlyYearly

binary-merge

Merges a pair of sorted arrays.

Use

First install via npm:

npm install binary-merge

Then you can use the algorithm as follows:

var merge = require("binary-merge")


console.log(merge([1,3,7], [2,4,6]))

// Prints:
//
//    1,2,3,4,6,7
//

Credits

(c) 2013 Mikola Lysenko. MIT License