Sha256: a528c579acbd2609da9325b0e09f7b7043f9d7dde0f9b259c6703926b94df454
Contents?: true
Size: 546 Bytes
Versions: 77
Compression:
Stored size: 546 Bytes
Contents
package strand // Source: exercism/problem-specifications // Commit: b4c24e6 rna-transcription: Apply new "input" policy // Problem Specifications Version: 1.2.0 var rnaTests = []struct { description string 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
77 entries across 77 versions & 1 rubygems