Skip to content

Commit 43c2525

Browse files
authored
fixed formatting 1985-find-the-kth-largest-integer-in-the-array.js
1 parent f45025b commit 43c2525

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

javascript/1985-find-the-kth-largest-integer-in-the-array.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
var kthLargestNumber = function(nums, k) {
1010

1111
// sort it string wise.
12-
nums.sort((a,b) => {
13-
if(a.length !== b.length) return b.length - a.length;
12+
nums.sort((a, b) => {
13+
if (a.length !== b.length) return b.length - a.length;
1414
return b.localeCompare(a);
1515
});
1616

17-
return nums[k-1];
17+
return nums[k - 1];
1818
};

0 commit comments

Comments
 (0)