1003:检查替换后的词是否有效

This commit is contained in:
huangge1199 2021-04-29 16:11:12 +08:00
parent 4441cf1d32
commit 2db7cd2312
2 changed files with 129 additions and 0 deletions

View File

@ -0,0 +1,77 @@
//给你一个字符串 s 请你判断它是否 有效
// 字符串 s 有效 需要满足假设开始有一个空字符串 t = "" 你可以执行 任意次 下述操作将 t 转换为 s
//
//
// 将字符串 "abc" 插入到 t 中的任意位置形式上t 变为 tleft + "abc" + tright其中 t == tleft + trigh
//t 注意tleft tright 可能为
//
//
// 如果字符串 s 有效则返回 true否则返回 false
//
//
//
// 示例 1
//
//
//输入s = "aabcbc"
//输出true
//解释
//"" -> "abc" -> "aabcbc"
//因此"aabcbc" 有效
//
// 示例 2
//
//
//输入s = "abcabcababcc"
//输出true
//解释
//"" -> "abc" -> "abcabc" -> "abcabcabc" -> "abcabcababcc"
//因此"abcabcababcc" 有效
//
// 示例 3
//
//
//输入s = "abccba"
//输出false
//解释执行操作无法得到 "abccba"
//
// 示例 4
//
//
//输入s = "cababc"
//输出false
//解释执行操作无法得到 "cababc"
//
//
//
// 提示
//
//
// 1 <= s.length <= 2 * 104
// s 由字母 'a''b' 'c' 组成
//
// Related Topics 字符串
// 👍 46 👎 0
package leetcode.editor.cn;
//1003:检查替换后的词是否有效
public class CheckIfWordIsValidAfterSubstitutions {
public static void main(String[] args) {
//测试代码
Solution solution = new CheckIfWordIsValidAfterSubstitutions().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public boolean isValid(String s) {
while (s.contains("abc")) {
s = s.replace("abc", "");
}
return "".equals(s);
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,52 @@
给你一个字符串 <code>s</code> ,请你判断它是否 <strong>有效</strong>
<p>字符串 <code>s</code> <strong>有效</strong> 需要满足:假设开始有一个空字符串 <code>t = ""</code> ,你可以执行 <strong>任意次</strong> 下述操作将<strong> </strong><code>t</code><strong> 转换为 </strong><code>s</code> </p>
<ul>
<li>将字符串 <code>"abc"</code> 插入到 <code>t</code> 中的任意位置。形式上,<code>t</code> 变为 <code>t<sub>left</sub> + "abc" + t<sub>right</sub></code>,其中 <code>t == t<sub>left</sub> + t<sub>right</sub></code> 。注意,<code>t<sub>left</sub></code><code>t<sub>right</sub></code> 可能为 <strong></strong></li>
</ul>
<p>如果字符串 <code>s</code> 有效,则返回 <code>true</code>;否则,返回 <code>false</code></p>
<p> </p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>s = "aabcbc"
<strong>输出:</strong>true
<strong>解释:</strong>
"" -> "<strong>abc</strong>" -> "a<strong>abc</strong>bc"
因此,"aabcbc" 有效。</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>s = "abcabcababcc"
<strong>输出:</strong>true
<strong>解释:</strong>
"" -> "<strong>abc</strong>" -> "abc<strong>abc</strong>" -> "abcabc<strong>abc</strong>" -> "abcabcab<strong>abc</strong>c"
因此,"abcabcababcc" 有效。</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>s = "abccba"
<strong>输出:</strong>false
<strong>解释:</strong>执行操作无法得到 "abccba" 。</pre>
<p><strong>示例 4</strong></p>
<pre>
<strong>输入:</strong>s = "cababc"
<strong>输出:</strong>false
<strong>解释:</strong>执行操作无法得到 "cababc" 。</pre>
<p> </p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 <= s.length <= 2 * 10<sup>4</sup></code></li>
<li><code>s</code> 由字母 <code>'a'</code><code>'b'</code><code>'c'</code> 组成</li>
</ul>
<div><div>Related Topics</div><div><li></li><li>字符串</li></div></div>\n<div><li>👍 46</li><li>👎 0</li></div>