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 ccddd0c commit 1db91b5Copy full SHA for 1db91b5
solution/0600-0699/0624.Maximum Distance in Arrays/Solution.js
@@ -2,7 +2,7 @@
2
* @param {number[][]} arrays
3
* @return {number}
4
*/
5
-var maxDistance = function(arrays) {
+var maxDistance = function (arrays) {
6
let minVal = arrays[0][0];
7
let maxVal = arrays[0][arrays[0].length - 1];
8
let maxDist = 0;
@@ -16,4 +16,4 @@ var maxDistance = function(arrays) {
16
}
17
18
return maxDist;
19
-};
+};
0 commit comments