0712. Minimum ASCII Delete Sum for Two Strings
https://leetcode.com/problems/minimum-ascii-delete-sum-for-two-strings
Description
Given two strings s1
and s2
, return the lowest ASCII sum of deleted characters to make two strings equal.
Example 1:
Example 2:
Constraints:
1 <= s1.length, s2.length <= 1000
s1
ands2
consist of lowercase English letters.
ac
Last updated