Skip to content
Snippets Groups Projects
Commit 960814c9 authored by Blaise Li's avatar Blaise Li
Browse files

Typo, brief description of implementations.

parent 9f3fb067
No related branches found
No related tags found
No related merge requests found
Pipeline #58886 passed
......@@ -497,7 +497,7 @@ Write a program that calculates the similarity of 2 RNA sequences.
so you have to compare the first base of two sequences and use the matrix to get the similarity
from the similarity table, on so on for all bases then sum these similarities.
First implementation
First implementation (list of columns)
.. literalinclude:: _static/code/matrix.py
:linenos:
......@@ -506,7 +506,7 @@ First implementation
:download:`matrix.py <_static/code/matrix.py>` .
Second implementation
Second implementation (bad variable naming, no documentation)
.. literalinclude:: _static/code/matrix2.py
:linenos:
......@@ -515,7 +515,7 @@ Second implementation
:download:`matrix2.py <_static/code/matrix2.py>` .
Thirs implementation
Third implementation (dict {(row, col): value})
.. literalinclude:: _static/code/matrix3.py
:linenos:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment