mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 23:41:41 +08:00
存量题库数据更新
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
<p>Return <em>the resulting string after evaluating <strong>all</strong> of the bracket pairs.</em></p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> s = "(name)is(age)yearsold", knowledge = [["name","bob"],["age","two"]]
|
||||
@@ -28,7 +28,7 @@ The key "name" has a value of "bob", so replace "(name)
|
||||
The key "age" has a value of "two", so replace "(age)" with "two".
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> s = "hi(name)", knowledge = [["a","b"]]
|
||||
@@ -36,7 +36,7 @@ The key "age" has a value of "two", so replace "(age)&q
|
||||
<strong>Explanation:</strong> As you do not know the value of the key "name", replace "(name)" with "?".
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 3:</strong></p>
|
||||
<p><strong class="example">Example 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> s = "(a)(a)(a)aaa", knowledge = [["a","yes"]]
|
||||
|
Reference in New Issue
Block a user