Sha256: 2fe4c1185639748d4afaa4572fd2dc1eafe30ba745c780129ba31999bc7704d7
Contents?: true
Size: 304 Bytes
Versions: 193
Compression:
Stored size: 304 Bytes
Contents
" " This function takes a DNA strand and returns its RNA complement. " " G -> C " C -> G " T -> A " A -> U " " If the input is invalid, return an empty string. " " Example: " " :echo ToRna('ACGTGGTCTTAA') " UGCACCAGAAUU " function! ToRna(strand) abort " your solution goes here endfunction
Version data entries
193 entries across 193 versions & 1 rubygems