반응형
https://leetcode.com/problems/check-if-two-string-arrays-are-equivalent/description/
간단한 문자열 문제였습니다.
📕 풀이방법
📔 입력 및 초기화
string w1,w2를 선언해줍니다.
📔 풀이과정
word1, word2의 원소를 순회하며 w1, w2에 문자열을 붙여줍니다.
📔 정답 출력 | 반환
w1, w2가 같은지 여부를 반환합니다.
📕 Code
📔 C++
class Solution {
public:
bool arrayStringsAreEqual(vector<string>& word1, vector<string>& word2) {
string w1, w2;
for(auto w : word1) w1 += w;
for(auto w : word2) w2 += w;
return w1 == w2;
}
};
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.