Sha256: 1833b6d4ef9424b11092c6ec4f5198c174e341a6e9355ca3afd1c2bb010e0f70
Contents?: true
Size: 508 Bytes
Versions: 255
Compression:
Stored size: 508 Bytes
Contents
'use strict'; var DNA = module.exports = function DNA(nucleotides) { this.nucleotides = nucleotides; }; DNA.prototype.hammingDistance = function(comparison) { var distance = 0; var calculationDistance = Math.min(this.nucleotides.length, comparison.length); for (var i = 0; i < calculationDistance; i++) { var currentNucleotide = this.nucleotides[i]; var comparisonNucleotide = comparison[i]; if (currentNucleotide !== comparisonNucleotide) { distance++; } } return distance; };
Version data entries
255 entries across 255 versions & 1 rubygems