mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 23:41:41 +08:00
存量题库数据更新
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
<p>Given an array of strings <code>operations</code> containing a list of operations, return <em>the <strong>final </strong>value of </em><code>X</code> <em>after performing all the operations</em>.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> operations = ["--X","X++","X++"]
|
||||
@@ -22,7 +22,7 @@ X++: X is incremented by 1, X = -1 + 1 = 0.
|
||||
X++: X is incremented by 1, X = 0 + 1 = 1.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> operations = ["++X","++X","X++"]
|
||||
@@ -34,7 +34,7 @@ Initially, X = 0.
|
||||
X++: X is incremented by 1, X = 2 + 1 = 3.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 3:</strong></p>
|
||||
<p><strong class="example">Example 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> operations = ["X++","++X","--X","X--"]
|
||||
|
Reference in New Issue
Block a user