Final Value of Variable After Performing Operations
LeetCode 2137 | Difficulty: Easyβ
EasyProblem Descriptionβ
There is a programming language with only four operations and one variable X:
-
++XandX++increments the value of the variableXby1. -
--XandX--decrements the value of the variableXby1.
Initially, the value of X is 0.
Given an array of strings operations containing a list of operations, return *the **final **value of *X after performing all the operations.
Example 1:
Input: operations = ["--X","X++","X++"]
Output: 1
Explanation: The operations are performed as follows:
Initially, X = 0.
--X: X is decremented by 1, X = 0 - 1 = -1.
X++: X is incremented by 1, X = -1 + 1 = 0.
X++: X is incremented by 1, X = 0 + 1 = 1.
Example 2:
Input: operations = ["++X","++X","X++"]
Output: 3
Explanation: The operations are performed as follows:
Initially, X = 0.
++X: X is incremented by 1, X = 0 + 1 = 1.
++X: X is incremented by 1, X = 1 + 1 = 2.
X++: X is incremented by 1, X = 2 + 1 = 3.
Example 3:
Input: operations = ["X++","++X","--X","X--"]
Output: 0
Explanation: The operations are performed as follows:
Initially, X = 0.
X++: X is incremented by 1, X = 0 + 1 = 1.
++X: X is incremented by 1, X = 1 + 1 = 2.
--X: X is decremented by 1, X = 2 - 1 = 1.
X--: X is decremented by 1, X = 1 - 1 = 0.
Constraints:
-
1 <= operations.length <= 100 -
operations[i]will be either"++X","X++","--X", or"X--".
Topics: Array, String, Simulation
Approachβ
String Processingβ
Consider character frequency counts, two-pointer approaches, or building strings efficiently. For pattern matching, think about KMP or rolling hash. For palindromes, expand from center or use DP.
Anagram detection, palindrome checking, string transformation, pattern matching.
Solutionsβ
Solution 1: C# (Best: 125 ms)β
| Metric | Value |
|---|---|
| Runtime | 125 ms |
| Memory | 26.5 MB |
| Date | 2021-09-20 |
public class Solution {
public int FinalValueAfterOperations(string[] operations) {
if (operations.Length == 0) { return 0;}
int additions = 0;
int subtractions = 0;
for (int i = 0; i < operations.Length; i++)
{
switch (operations[i])
{
case "--X":
case "X--":
subtractions++;
break;
case "X++":
case "++X":
additions++;
break;
}
}
return additions-subtractions;
}
}
Complexity Analysisβ
| Approach | Time | Space |
|---|---|---|
| Solution |
Interview Tipsβ
- Start by clarifying edge cases: empty input, single element, all duplicates.
- LeetCode provides 2 hint(s) for this problem β try solving without them first.
π‘ Hints
Hint 1: There are only two operations to keep track of.
Hint 2: Use a variable to store the value after each operation.