Sha256: 9c0ecc550a5f73b30a9434ce7ee03f51460fb0c32e9c0757357b59204acde072
Contents?: true
Size: 486 Bytes
Versions: 68
Compression:
Stored size: 486 Bytes
Contents
package strand // Source: exercism/x-common // Commit: 0b20fff rna-transcription: Fix canonical-data.json formatting // x-common version: 1.0.0 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
68 entries across 68 versions & 1 rubygems