Skip to content

Commit fbcd20e

Browse files
Update strings/min_cost_string_conversion.py
1 parent a53a095 commit fbcd20e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

strings/min_cost_string_conversion.py

-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ def compute_transform_tables(
4646
["0" for _ in range(len_destination_seq + 1)] for _ in range(len_source_seq + 1)
4747
]
4848

49-
# Removed ':c' specifier as it is generally
50-
# used for integers to convert to a Unicode
51-
# character not strings.
5249
for i in range(1, len_source_seq + 1):
5350
costs[i][0] = i * delete_cost
5451
ops[i][0] = f"D{source_seq[i - 1]}"

0 commit comments

Comments
 (0)