exercism

Exercism solutions.
git clone git://code.dwrz.net/exercism
Log | Files | Refs

README.md (2569B)


      1 # Hamming
      2 
      3 Calculate the Hamming Distance between two DNA strands.
      4 
      5 Your body is made up of cells that contain DNA. Those cells regularly wear out and need replacing, which they achieve by dividing into daughter cells. In fact, the average human body experiences about 10 quadrillion cell divisions in a lifetime!
      6 
      7 When cells divide, their DNA replicates too. Sometimes during this process mistakes happen and single pieces of DNA get encoded with the incorrect information. If we compare two strands of DNA and count the differences between them we can see how many mistakes occurred. This is known as the "Hamming Distance".
      8 
      9 We read DNA using the letters C,A,G and T. Two strands might look like this:
     10 
     11     GAGCCTACTAACGGGAT
     12     CATCGTAATGACGGCCT
     13     ^ ^ ^  ^ ^    ^^
     14 
     15 They have 7 differences, and therefore the Hamming Distance is 7.
     16 
     17 The Hamming Distance is useful for lots of things in science, not just biology, so it's a nice phrase to be familiar with :)
     18 
     19 # Implementation notes
     20 
     21 The Hamming distance is only defined for sequences of equal length, so
     22 an attempt to calculate it between sequences of different lengths should
     23 not work. The general handling of this situation (e.g., raising an
     24 exception vs returning a special value) may differ between languages.
     25 
     26 ## Getting Started
     27 
     28 Make sure you have read the "Guides" section of the
     29 [C track](https://exercism.io/my/tracks/c) on the Exercism site. This covers
     30 the basic information on setting up the development environment expected
     31 by the exercises.
     32 
     33 
     34 ## Passing the Tests
     35 
     36 Get the first test compiling, linking and passing by following the [three
     37 rules of test-driven development][3-tdd-rules].
     38 
     39 The included makefile can be used to create and run the tests using the `test`
     40 task.
     41 
     42     make test
     43 
     44 Create just the functions you need to satisfy any compiler errors and get the
     45 test to fail. Then write just enough code to get the test to pass. Once you've
     46 done that, move onto the next test.
     47 
     48 [3-tdd-rules]: http://butunclebob.com/ArticleS.UncleBob.TheThreeRulesOfTdd
     49 
     50 As you progress through the tests, take the time to refactor your
     51 implementation for readability and expressiveness and then go on to the next
     52 test.
     53 
     54 Try to use standard C99 facilities in preference to writing your own
     55 low-level algorithms or facilities by hand.
     56 
     57 ## Source
     58 
     59 The Calculating Point Mutations problem at Rosalind [http://rosalind.info/problems/hamm/](http://rosalind.info/problems/hamm/)
     60 
     61 ## Submitting Incomplete Solutions
     62 It's possible to submit an incomplete solution so you can see how others have completed the exercise.