Sha256: e6f4048d3ba9f76c4fdea2b07be4dd013e3ef490b42914a65818687b4bcce33c
Contents?: true
Size: 515 Bytes
Versions: 45
Compression:
Stored size: 515 Bytes
Contents
package strand // Source: exercism/problem-specifications // Commit: cb1fd3a rna-transcription: rephrase negative test descriptions // Problem Specifications Version: 1.0.1 var rnaTests = []struct { input string expected string }{ // RNA complement of cytosine is guanine {"C", "G"}, // RNA complement of guanine is cytosine {"G", "C"}, // RNA complement of thymine is adenine {"T", "A"}, // RNA complement of adenine is uracil {"A", "U"}, // RNA complement {"ACGTGGTCTTAA", "UGCACCAGAAUU"}, }
Version data entries
45 entries across 45 versions & 1 rubygems