mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-04 06:51:41 +08:00
存量题库数据更新
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
<p>Note that each letter is counted individually for replacement, so if, for example <code>s[left<sub>i</sub>...right<sub>i</sub>] = "aaa"</code>, and <code>k<sub>i</sub> = 2</code>, we can only replace two of the letters. Also, note that no query modifies the initial string <code>s</code>.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example :</strong></p>
|
||||
<p><strong class="example">Example :</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> s = "abcda", queries = [[3,3,0],[1,2,0],[0,3,1],[0,3,2],[0,4,1]]
|
||||
@@ -20,7 +20,7 @@ queries[3]: substring = "abcd", could be changed to "abba" w
|
||||
queries[4]: substring = "abcda", could be changed to "abcba" which is palidrome.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> s = "lyb", queries = [[0,1,0],[2,2,1]]
|
||||
|
Reference in New Issue
Block a user