mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-10-22 13:36:46 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p>给定两个单词 <code>word1</code> 和<meta charset=\"UTF-8\" /> <code>word2</code> ,返回使得<meta charset=\"UTF-8\" /> <code>word1</code> 和 <meta charset=\"UTF-8\" /> <code>word2</code><em> </em><strong>相同</strong>所需的<strong>最小步数</strong>。</p>\n\n<p><strong>每步 </strong>可以删除任意一个字符串中的一个字符。</p>\n\n<p> </p>\n\n<p><strong>示例 1:</strong></p>\n\n<pre>\n<strong>输入:</strong> word1 = \"sea\", word2 = \"eat\"\n<strong>输出:</strong> 2\n<strong>解释:</strong> 第一步将 \"sea\" 变为 \"ea\" ,第二步将 \"eat \"变为 \"ea\"\n</pre>\n\n<p><strong>示例 2:</strong></p>\n\n<pre>\n<b>输入:</b>word1 = \"leetcode\", word2 = \"etco\"\n<b>输出:</b>4\n</pre>\n\n<p> </p>\n\n<p><strong>提示:</strong></p>\n<meta charset=\"UTF-8\" />\n\n<ul>\n\t<li><code>1 <= word1.length, word2.length <= 500</code></li>\n\t<li><code>word1</code> 和 <code>word2</code> 只包含小写英文字母</li>\n</ul>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Medium",
|
||||
"likes": 394,
|
||||
"likes": 406,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Edit Distance\", \"titleSlug\": \"edit-distance\", \"difficulty\": \"Hard\", \"translatedTitle\": \"\\u7f16\\u8f91\\u8ddd\\u79bb\"}, {\"title\": \"Minimum ASCII Delete Sum for Two Strings\", \"titleSlug\": \"minimum-ascii-delete-sum-for-two-strings\", \"difficulty\": \"Medium\", \"translatedTitle\": \"\\u4e24\\u4e2a\\u5b57\\u7b26\\u4e32\\u7684\\u6700\\u5c0fASCII\\u5220\\u9664\\u548c\"}]",
|
||||
@@ -143,7 +143,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"68.8K\", \"totalSubmission\": \"107.7K\", \"totalAcceptedRaw\": 68754, \"totalSubmissionRaw\": 107744, \"acRate\": \"63.8%\"}",
|
||||
"stats": "{\"totalAccepted\": \"73.6K\", \"totalSubmission\": \"114.5K\", \"totalAcceptedRaw\": 73578, \"totalSubmissionRaw\": 114504, \"acRate\": \"64.3%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
|
Reference in New Issue
Block a user