Sha256: 3ceaee643f10ef33747909a474debedccbdccb9d2870618af8e5de8679795fa6
Contents?: true
Size: 487 Bytes
Versions: 50
Compression:
Stored size: 487 Bytes
Contents
package strand // Source: exercism/x-common // Commit: cb1fd3a rna-transcription: rephrase negative test descriptions // x-common 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
50 entries across 50 versions & 1 rubygems