Skip to content

Commit 5ab9d29

Browse files
committed
Merge branch 'doctests/string_conversion' of https://github.com/Lonercode/Python into doctests/string_conversion
2 parents 69af177 + 16796d5 commit 5ab9d29

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

strings/min_cost_string_conversion.py

+3
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ def compute_transform_tables(
7979

8080
def assemble_transformation(ops: list[list[str]], i: int, j: int) -> list[str]:
8181
"""
82+
Assembles the transformations based on the information in the ops table.
83+
84+
>>> ops = [['0', 'Ic', 'Iu', 'It'], ['Dc', 'Cc', 'Iu', 'It'], ['Da', 'Da', 'Rau', 'Rat'], ['Dt', 'Dt', 'Rtu', 'Ct']]
8285
Assembles the transformations based on the ops table.
8386
8487
>>> ops = [['0', 'Ic', 'Iu', 'It'],

0 commit comments

Comments
 (0)