출처 : https://leetcode.com/problems/final-value-of-variable-after-performing-operations/
There is a programming language with only four operations and one variable X
:
++X
and X++
increments the value of the variable X
by 1
.
--X
and X--
decrements the value of the variable X
by 1
.
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.
class Solution {
public int finalValueAfterOperations(String[] operations) {
int res = 0;
for(String s : operations){
if(s.equals("--X") || s.equals("X--")){
res--;
}
else{
res++;
}
}
return res;
}
}