Skip to content

Commit ba248ed

Browse files
AE-Hertzidoocs
authored andcommitted
style: format code and docs with prettier
1 parent 413b1d2 commit ba248ed

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
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;

0 commit comments

Comments
 (0)