solution.md 1.3 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
# 两数之和

<p>如果字符串中的所有字符都相同,那么这个字符串是单字符重复的字符串。</p>

<p>给你一个字符串&nbsp;<code>text</code>,你只能交换其中两个字符一次或者什么都不做,然后得到一些单字符重复的子串。返回其中最长的子串的长度。</p>

<p>&nbsp;</p>

<p><strong>示例 1:</strong></p>

<pre><strong>输入:</strong>text = &quot;ababa&quot;
<strong>输出:</strong>3
</pre>

<p><strong>示例 2:</strong></p>

<pre><strong>输入:</strong>text = &quot;aaabaaa&quot;
<strong>输出:</strong>6
</pre>

<p><strong>示例 3:</strong></p>

<pre><strong>输入:</strong>text = &quot;aaabbaaa&quot;
<strong>输出:</strong>4
</pre>

<p><strong>示例 4:</strong></p>

<pre><strong>输入:</strong>text = &quot;aaaaa&quot;
<strong>输出:</strong>5
</pre>

<p><strong>示例 5:</strong></p>

<pre><strong>输入:</strong>text = &quot;abcdef&quot;
<strong>输出:</strong>1
</pre>

<p>&nbsp;</p>

<p><strong>提示:</strong></p>

<ul>
	<li><code>1 &lt;= text.length &lt;= 20000</code></li>
	<li><code>text</code> 仅由小写英文字母组成。</li>
</ul>

<p>以下错误的选项是?</p>

## aop
### before
```cpp

```
### after
```cpp

```

## 答案
```cpp

```
## 选项

### A
```cpp

```

### B
```cpp

```

### C
```cpp

```