1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-11 02:11:42 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -40,11 +40,9 @@
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>s = "0"
<strong>输入:</strong>s = "06"
<strong>输出:</strong>0
<strong>解释:</strong>没有字符映射到以 0 开头的数字
含有 0 的有效映射是 'J' -&gt; "10" 和 'T'-&gt; "20" 。
由于没有字符,因此没有有效的方法对此进行解码,因为所有数字都需要映射。
<strong>解释:</strong>"06" 无法映射到 "F" ,因为存在前导零("6" 和 "06" 并不等价)
</pre>
<p>&nbsp;</p>