Hamming Distance exercism exercise in Pharo. Compares two "DNA" strings and counts the differences b/t the two strands.
# hamming-distance-pharo Hamming Distance exercism exercise in Pharo. Compares two "DNA" strings and counts the differences b/t the two strands. Example: 'abcdefgh' and 'bbclefgj' would return 3 as the hamming distance. ---TO DO --- Rethink my instance variables (do I need hammingDistance?) Make strings lowercased Write tests