We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18a2c2a commit 68c807aCopy full SHA for 68c807a
easy/Check If Two String Arrays are Equivalent.py
@@ -0,0 +1,4 @@
1
+#1662. Check If Two String Arrays are Equivalent
2
+class Solution:
3
+ def arrayStringsAreEqual(self, word1: List[str], word2: List[str]) -> bool:
4
+ return "".join(word1)=="".join(word2)
0 commit comments