두개의 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)
'👩💻Developer > Leetcode' 카테고리의 다른 글
[Easy][Python] Palindrome Number (0) | 2022.12.01 |
---|---|
[Easy][Python] Range Sum of BST (0) | 2022.10.28 |
[Easy][Python] Root Equals Sum of Children (0) | 2022.10.25 |
[Easy][Python] Count of Matches in Tournament (0) | 2022.10.23 |
[Easy][Python] Defanging an IP Address (0) | 2022.10.23 |
댓글