본문 바로가기
👩‍💻Developer/Leetcode

[Easy][Python] Check if Two String Arrays are Equivalent

by 블루누들 2022. 11. 20.

두개의 string array인 word1 과 word2가 주어졌을때 두개의 array가 같은 string을 나타내면 true를 return하고 아니면 false를 return한다.

 

 

#Example 1:
#input : word1 = ["ab", "c"], word2 = ["a", "bc"]
#output : true


class Solution:
    def arrayStringsAreEqual(self, word1: List[str], word2: List[str]) -> bool:
        return "".join(word1) == "".join(word2)

댓글