plain-hamming

0.1.0 • Public • Published

plain-hamming build status

Calculates the Hamming distance between two strings.

Uses very simple algorithm that does no input checking to be faster, therefore make sure that the arguments you pass in are both strings of equal length.

const plainHamming = require('plain-hamming')
plainHamming('hello', 'hello')  // => 0
plainHamming('hello', 'he1lo')  // => 1
plainHamming('hello', 'he11o')  // => 2
plainHamming('hello', 'h3llo')  // => 1
plainHamming('hello', 'h3ll0')  // => 2

Installation

npm install plain-hamming

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i plain-hamming

Weekly Downloads

2

Version

0.1.0

License

MIT

Last publish

Collaborators

  • thlorenz