2011.执行操作后的变量值
链接:2011.执行操作后的变量值
难度:Easy
标签:数组、字符串、模拟
简介:给你一个字符串数组 operations ,这是由操作组成的一个列表,返回执行所有操作后, X 的 最终值 。
题解 1 - cpp
- 编辑时间:2022-12-23
- 执行用时:4ms
- 内存消耗:13.6MB
- 编程语言:cpp
- 解法介绍:遍历。
class Solution {
public:
int finalValueAfterOperations(vector<string>& operations) {
int ans = 0;
for (auto &s : operations) if (s[1] == '+') ans++; else ans--;
return ans;
}
};