1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-27 02:30:28 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/兼具大小写的最好英文字母 [greatest-english-letter-in-upper-and-lower-case].html

44 lines
1.6 KiB
HTML
Raw Permalink Normal View History

2022-06-29 22:54:34 +08:00
<p>给你一个由英文字母组成的字符串 <code>s</code> ,请你找出并返回 <code>s</code> 中的 <strong>最好</strong> 英文字母。返回的字母必须为大写形式。如果不存在满足条件的字母,则返回一个空字符串。</p>
<p><strong>最好</strong> 英文字母的大写和小写形式必须 <strong></strong><code>s</code> 中出现。</p>
<p>英文字母 <code>b</code> 比另一个英文字母&nbsp;<code>a</code>&nbsp;<strong>更好</strong> 的前提是:英文字母表中,<code>b</code><code>a</code><strong></strong> 出现。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>s = "l<em><strong>Ee</strong></em>TcOd<em><strong>E</strong></em>"
<strong>输出:</strong>"E"
<strong>解释:</strong>
字母 'E' 是唯一一个大写和小写形式都出现的字母。</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>s = "a<em><strong>rR</strong></em>AzFif"
<strong>输出:</strong>"R"
<strong>解释:</strong>
字母 'R' 是大写和小写形式都出现的最好英文字母。
注意 'A' 和 'F' 的大写和小写形式也都出现了,但是 'R' 比 'F' 和 'A' 更好。
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>s = "AbCdEfGhIjK"
<strong>输出:</strong>""
<strong>解释:</strong>
不存在大写和小写形式都出现的字母。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= s.length &lt;= 1000</code></li>
<li><code>s</code> 由小写和大写英文字母组成</li>
</ul>