We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cef1a66 commit a9f937dCopy full SHA for a9f937d
README.md
@@ -47,6 +47,8 @@ Step 2. Add the dependency
47
48
https://leetcode.cn/problems/inorder-successor-in-bst-ii/
49
50
+https://leetcode.cn/problems/check-if-two-string-arrays-are-equivalent/
51
+
52
https://leetcode.cn/problems/boundary-of-binary-tree/
53
54
https://leetcode.cn/problems/the-kth-factor-of-n/
check-if-two-string-arrays-are-equivalent/index.ts
@@ -0,0 +1,6 @@
1
+export default function arrayStringsAreEqual(
2
+ word1: string[],
3
+ word2: string[],
4
+): boolean {
5
+ return word1.join("") === word2.join("");
6
+}
0 commit comments