solution.md 1.5 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
# 两数之和

<p>给你一个字符串 <code>s</code>,请你返回 <strong>两个相同字符之间的最长子字符串的长度</strong> <em></em>计算长度时不含这两个字符。如果不存在这样的子字符串,返回 <code>-1</code></p>

<p><strong>子字符串</strong> 是字符串中的一个连续字符序列。</p>

<p> </p>

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

<pre><strong>输入:</strong>s = "aa"
<strong>输出:</strong>0
<strong>解释:</strong>最优的子字符串是两个 'a' 之间的空子字符串。</pre>

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

<pre><strong>输入:</strong>s = "abca"
<strong>输出:</strong>2
<strong>解释:</strong>最优的子字符串是 "bc" 。
</pre>

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

<pre><strong>输入:</strong>s = "cbzxy"
<strong>输出:</strong>-1
<strong>解释:</strong>s 中不存在出现出现两次的字符,所以返回 -1 。
</pre>

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

<pre><strong>输入:</strong>s = "cabbac"
<strong>输出:</strong>4
<strong>解释:</strong>最优的子字符串是 "abba" ,其他的非最优解包括 "bb" 和 "" 。
</pre>

<p> </p>

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

<ul>
	<li><code>1 &lt;= s.length &lt;= 300</code></li>
	<li><code>s</code> 只含小写英文字母</li>
</ul>

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

## aop
### before
```cpp

```
### after
```cpp

```

## 答案
```cpp

```
## 选项

### A
```cpp

```

### B
```cpp

```

### C
```cpp

```