mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-10 01:41:41 +08:00
存量题库数据更新
This commit is contained in:
@@ -16,9 +16,9 @@
|
||||
<strong>输入:</strong>strs = ["babca","bbazb"]
|
||||
<strong>输出:</strong>3
|
||||
<strong>解释:
|
||||
</strong>删除 0、1 和 4 这三列后,最终得到的数组是 A = ["bc", "az"]。
|
||||
这两行是分别按字典序排列的(即,A[0][0] <= A[0][1] 且 A[1][0] <= A[1][1])。
|
||||
注意,A[0] > A[1] —— 数组 A 不一定是按字典序排列的。
|
||||
</strong>删除 0、1 和 4 这三列后,最终得到的数组是 strs = ["bc", "az"]。
|
||||
这两行是分别按字典序排列的(即,strs[0][0] <= strs[0][1] 且 strs[1][0] <= strs[1][1])。
|
||||
注意,strs[0] > strs[1] —— 数组 strs 不一定是按字典序排列的。
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
Reference in New Issue
Block a user