-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test PR to confirm the no important files change fix worked. DO NO ME…
…RGE!
- Loading branch information
Showing
5 changed files
with
56 additions
and
6 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
exercises/practice/protein-translation/.approaches/config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"introduction": { | ||
"authors": [ | ||
"BethanyG" | ||
] | ||
}, | ||
"approaches": [ | ||
{ | ||
"uuid": "", | ||
"slug": "", | ||
"title": "", | ||
"blurb": "", | ||
"authors": [ | ||
"BethanyG" | ||
] | ||
}, | ||
{ | ||
"uuid": "", | ||
"slug": "", | ||
"title": "", | ||
"blurb": "", | ||
"authors": [ | ||
"BethanyG" | ||
] | ||
}, | ||
{ | ||
"uuid": "", | ||
"slug": "", | ||
"title": "", | ||
"blurb": "", | ||
"authors": [ | ||
"BethanyG" | ||
] | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
exercises/practice/protein-translation/.approaches/introduction.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Introduction | ||
|
||
The goal of the `Protein Translation` exercise is to transform an input string representing mRNA [codons][codons] to a `list` of corresponding [amino acid][amino acids] names. | ||
|
||
There are many different ways to solve this problem in Python, but all solutions use some form of mapping that connects three-letter codon codes to their amino acid names. | ||
The most common mapping is to use a dictionary, but [`Enums`][enums] | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
[codons]: https://en.wikipedia.org/wiki/DNA_and_RNA_codon_tables | ||
[amino acids]: https://en.wikipedia.org/wiki/Amino_acid#:~:text=Amino%20acids%20are%20the%20precursors,to%20two%20neighboring%20amino%20acids. | ||
[enums]: https://docs.python.org/3/howto/enum.html# |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters