0.1.0 • Published 7 years ago

plain-hamming v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

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