10 lines
212 B
Go
10 lines
212 B
Go
package protein
|
|
|
|
func FromRNA(rna string) ([]string, error) {
|
|
panic("Please implement the FromRNA function")
|
|
}
|
|
|
|
func FromCodon(codon string) (string, error) {
|
|
panic("Please implement the FromCodon function")
|
|
}
|