We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a53a095 commit fbcd20eCopy full SHA for fbcd20e
strings/min_cost_string_conversion.py
@@ -46,9 +46,6 @@ def compute_transform_tables(
46
["0" for _ in range(len_destination_seq + 1)] for _ in range(len_source_seq + 1)
47
]
48
49
- # Removed ':c' specifier as it is generally
50
- # used for integers to convert to a Unicode
51
- # character not strings.
52
for i in range(1, len_source_seq + 1):
53
costs[i][0] = i * delete_cost
54
ops[i][0] = f"D{source_seq[i - 1]}"
0 commit comments