1662. 检查两个字符串数组是否相等

string水题

一、用+

class Solution {
public:
    bool arrayStringsAreEqual(vector<string>& word1, vector<string>& word2) {
        int lenA=word1.size();
        int lenB=word2.size();

        string A,B;
        for(string temp: word1)
        {
            A+=temp;
        }

        for(string temp: word2)
        {
            B+=temp;
        }

        if( A==B )
        {
            return true;
        }
        else
        {
            return false;
        }
    }
};

二、用append运行速度更快

class Solution {
public:
    bool arrayStringsAreEqual(vector<string>& word1, vector<string>& word2) {
        int lenA=word1.size();
        int lenB=word2.size();

        string A,B;
        for(string temp: word1)
        {
            //用的地方
            A.append(temp);
        }

        for(string temp: word2)
        {
            B.append(temp);
        }

        if( A==B )
        {
            return true;
        }
        else
        {
            return false;
        }
    }
};