1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/数组中字符串的最大值 [maximum-value-of-a-string-in-an-array].html
2022-12-14 18:41:02 +08:00

43 lines
1.4 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>一个由字母和数字组成的字符串的 <strong></strong>&nbsp;定义如下:</p>
<ul>
<li>如果字符串 <strong></strong> 包含数字,那么值为该字符串在 <code>10</code>&nbsp;进制下的所表示的数字。</li>
<li>否则,值为字符串的 <strong>长度&nbsp;</strong></li>
</ul>
<p>给你一个字符串数组&nbsp;<code>strs</code>&nbsp;,每个字符串都只由字母和数字组成,请你返回 <code>strs</code>&nbsp;中字符串的 <strong>最大值</strong>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>strs = ["alic3","bob","3","4","00000"]
<b>输出:</b>5
<b>解释:</b>
- "alic3" 包含字母和数字,所以值为长度 5 。
- "bob" 只包含字母,所以值为长度 3 。
- "3" 只包含数字,所以值为 3 。
- "4" 只包含数字,所以值为 4 。
- "00000" 只包含数字,所以值为 0 。
所以最大的值为 5 ,是字符串 "alic3" 的值。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<b>输入:</b>strs = ["1","01","001","0001"]
<b>输出:</b>1
<b>解释:</b>
数组中所有字符串的值都是 1 ,所以我们返回 1 。</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= strs.length &lt;= 100</code></li>
<li><code>1 &lt;= strs[i].length &lt;= 9</code></li>
<li><code>strs[i]</code>&nbsp;只包含小写英文字母和数字。</li>
</ul>