Daily LeetCode – day0147 2011. Final Value of Variable After Performing Operations

// 2011. Final Value of Variable After Performing Operations
class Solution {
    public int finalValueAfterOperations(String[] operations) {
        int ans = 0;
        for (String operation : operations) {
            if (operation.charAt(1) == '+') {
                ++ans;
            } else {
                --ans;
            }
        }
        return ans;
    }
}
学习笔记:
困难题之后果然就是简单题,这道题真是一道水题。
完全不用考虑++c和c++的区别,就看中间这一位是啥。


关于樊轶群

一个善良的理想主义者。
此条目发表在每日LeetCode分类目录。将固定链接加入收藏夹。

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注