Skip to content

Instantly share code, notes, and snippets.

@barnes7td
Created June 14, 2014 00:07
Show Gist options
  • Save barnes7td/f27470b28b8357bbfd56 to your computer and use it in GitHub Desktop.
Save barnes7td/f27470b28b8357bbfd56 to your computer and use it in GitHub Desktop.
Exercism.io Hamming
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
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