Sha256: d460d4eb691986e20a5002869db4395cea68988a0bff1f5c2dfac467a63392e0

Contents?: true

Size: 288 Bytes

Versions: 274

Compression:

Stored size: 288 Bytes

Contents

package strand

import "strings"

const testVersion = 3

func ToRNA(dna string) string {
	dna = strings.Replace(dna, "A", "u", -1)
	dna = strings.Replace(dna, "T", "a", -1)
	dna = strings.Replace(dna, "C", "g", -1)
	dna = strings.Replace(dna, "G", "c", -1)
	return strings.ToUpper(dna)
}

Version data entries

274 entries across 274 versions & 1 rubygems

Version Path
trackler-2.2.1.56 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.55 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.54 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.53 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.52 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.51 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.50 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.49 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.48 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.47 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.46 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.45 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.44 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.43 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.42 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.41 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.40 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.39 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.38 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.37 tracks/go/exercises/rna-transcription/example.go