Skip to content

Commit

Permalink
Sync LeetCode submission - Check If Two String Arrays are Equivalent …
Browse files Browse the repository at this point in the history
…(javascript)
  • Loading branch information
DhanushNehru committed Dec 1, 2023
1 parent 4051dfd commit fe28735
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/**
* @param {string[]} word1
* @param {string[]} word2
* @return {boolean}
*/
var arrayStringsAreEqual = function(word1, word2) {
return word1.join("") == word2.join("")
};

0 comments on commit fe28735

Please sign in to comment.