+ 2
Challenge challenge
In DNA strings, symbols "A" and "T" are complements of each other, as "C" and "G". You have function with one side of the DNA (string, except for Haskell); you need to get the other complementary side. DNA strand is never empty or there is no DNA at all. DNA_strand ("ATTGC") # return "TAACG" DNA_strand ("GTAT") # return "CATA"
3 Answers
+ 2
+ 2
I'd advise you advertise your challenge here for easier reference
https://www.sololearn.com/discuss/583904/?ref=app
0
I'll do this once I get off work.