We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b49d27 commit e67c0c2Copy full SHA for e67c0c2
javascript/2542-maximum-subsequence-score.js
@@ -11,7 +11,7 @@ var maxScore = function(nums1, nums2, k) {
11
12
const minQ = new MinPriorityQueue({
13
compare: (a,b) => {
14
- return a-b;
+ return a - b;
15
}
16
});
17
0 commit comments