Skip to content

Commit e67c0c2

Browse files
authored
Fixed Formatting 2542-maximum-subsequence-score.js
1 parent 6b49d27 commit e67c0c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/2542-maximum-subsequence-score.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var maxScore = function(nums1, nums2, k) {
1111

1212
const minQ = new MinPriorityQueue({
1313
compare: (a,b) => {
14-
return a-b;
14+
return a - b;
1515
}
1616
});
1717

0 commit comments

Comments
 (0)