Created
June 14, 2014 00:07
-
-
Save barnes7td/f27470b28b8357bbfd56 to your computer and use it in GitHub Desktop.
Exercism.io Hamming
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Hamming | |
def self.compute(first_gene, second_gene) | |
length = first_gene.length < second_gene.length ? first_gene.length : second_gene.length | |
score = 0 | |
(0..(length - 1)).each do |index| | |
score += 1 unless first_gene[index] == second_gene[index] | |
end | |
score | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Hamming | |
def self.compute(first, second) | |
length = [first.size, second.size].min | |
(0...length).inject(0) do |sum, index| | |
first[index] == second[index] ? sum : sum += 1 | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment