반응형
포인트
1. string 을 합쳐서 비교를 할 수 있는가? 를 물어보는 문제 해결 방법은 간단하다.
🧶문서는 항상 수정 될 수 있습니다. 비판은 환영합니다.
cpp
class Solution {
public:
bool arrayStringsAreEqual(vector<string>& word1, vector<string>& word2) {
string a;
for (auto ele1: word1){
a+=ele1;
}
string b;
for(auto ele2: word2){
b+=ele2;
}
return a==b;
}
};
python
class Solution:
def arrayStringsAreEqual(self, word1: List[str], word2: List[str]) -> bool:
return (''.join(word1)==''.join(word2))
반응형
'알고리즘' 카테고리의 다른 글
[알고리즘] Goal Parser Interpretation (0) | 2021.02.01 |
---|---|
[알고리즘] Count the Number of Consistent Strings (0) | 2021.01.31 |
[알고리즘] 짝지어 제거하기 (0) | 2021.01.28 |
[알고리즘 ] Concatenation of Consecutive Binary Numbers (0) | 2021.01.28 |
[알고리즘] 완주하지 못한 선수 (0) | 2021.01.26 |
댓글