Sha256: f671fa87d2685085fce9964c2934ee4b276fb3f1619f7a4a89483a68c4ee93cd
Contents?: true
Size: 215 Bytes
Versions: 396
Compression:
Stored size: 215 Bytes
Contents
class DNA attr_reader :strand def initialize(strand) @strand = strand end def hamming_distance(other_strand) strand.chars.zip(other_strand.chars).count do |a, b| b && a != b end end end
Version data entries
396 entries across 396 versions & 1 rubygems