Skip to content

Commit 2e8a4e4

Browse files
petremBNAndras
andauthored
Update exercises/practice/rna-transcription/.approaches/dictionary-join/content.md
Co-authored-by: András B Nagy <20251272+BNAndras@users.noreply.github.com>
1 parent 14f2939 commit 2e8a4e4

File tree

1 file changed

+2
-1
lines changed
  • exercises/practice/rna-transcription/.approaches/dictionary-join

1 file changed

+2
-1
lines changed

exercises/practice/rna-transcription/.approaches/dictionary-join/content.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ def to_rna(dna_strand):
3636
return ''.join([LOOKUP[char] for char in dna_strand])
3737
```
3838

39-
For a relatively small number of elements, using lists is fine and is usually even faster, but as the size of the data increases, the memory consumption increases and performance decreases. See also [this discussion][list-comprehension-choose-generator-expression] regarding when to choose one over the other.
39+
For a relatively small number of elements, using lists is fine and is usually even faster, but as the size of the data increases, the memory consumption increases and performance decreases.
40+
See also [this discussion][list-comprehension-choose-generator-expression] regarding when to choose one over the other.
4041

4142
[dictionaries]: https://docs.python.org/3/tutorial/datastructures.html?#dictionaries
4243
[const]: https://realpython.com/python-constants/

0 commit comments

Comments
 (0)