Skip to content

Commit 9223b1f

Browse files
yanglbmeidoocs
authored andcommitted
style: format code and docs with prettier
1 parent d6f4c63 commit 9223b1f

File tree

1 file changed

+1
-1
lines changed
  • solution/3000-3099/3043.Find the Length of the Longest Common Prefix

1 file changed

+1
-1
lines changed

solution/3000-3099/3043.Find the Length of the Longest Common Prefix/Solution.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var longestCommonPrefix = function(arr1, arr2) {
1+
var longestCommonPrefix = function (arr1, arr2) {
22
let set = new Set();
33

44
for (let x of arr1) {

0 commit comments

Comments
 (0)