712. Minimum ASCII Delete Sum for Two Strings
Given two strings s1
and s2
, return the lowest ASCII sum of deleted characters to make two strings equal.
Example 1:
Example 2:
Constraints:
s1.length
, s2.length
<= 1000s1
and s2
consist of lowercase English letters.