Skip to content

Commit 1db91b5

Browse files
AE-Hertzidoocs
authored andcommitted
style: format code and docs with prettier
1 parent ccddd0c commit 1db91b5

File tree

1 file changed

+2
-2
lines changed
  • solution/0600-0699/0624.Maximum Distance in Arrays

1 file changed

+2
-2
lines changed

solution/0600-0699/0624.Maximum Distance in Arrays/Solution.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @param {number[][]} arrays
33
* @return {number}
44
*/
5-
var maxDistance = function(arrays) {
5+
var maxDistance = function (arrays) {
66
let minVal = arrays[0][0];
77
let maxVal = arrays[0][arrays[0].length - 1];
88
let maxDist = 0;
@@ -16,4 +16,4 @@ var maxDistance = function(arrays) {
1616
}
1717

1818
return maxDist;
19-
};
19+
};

0 commit comments

Comments
 (0)