当前位置:   article > 正文

leetcode随机刷题记录 2011_leetcode 刷题 第2011题

leetcode 刷题 第2011题

思路,由于就这么4句话,可以看出每一句话的第二位是运算符,只用看这一位就行了

class Solution {
public:
    int finalValueAfterOperations(vector<string>& operations) {
        short x = 0;
        short l1;
        l1 = operations.size();
        for(int i = 0; i < l1 ;i++){
            if(operations[i][1] == '+'){
                x++;
            }else{
                x--;
            }
        }
        return x;
    }
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/650217
推荐阅读
相关标签
  

闽ICP备14008679号