Skip to content

Commit d500513

Browse files
authored
Improved tasks 15, 20, 23
1 parent 4caee25 commit d500513

File tree

3 files changed

+12
-27
lines changed

3 files changed

+12
-27
lines changed

src/main/js/g0001_0100/s0015_3sum/solution.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,12 @@ var threeSum = function (nums) {
1010
nums.sort((a, b) => a - b)
1111
const len = nums.length
1212
const result = []
13-
14-
for (let i = 0; i < len - 2; i++) {
13+
let i = 0;
14+
while (i < len - 2) {
1515
let l = i + 1
1616
let r = len - 1
17-
1817
while (r > l) {
1918
const sum = nums[i] + nums[l] + nums[r]
20-
2119
if (sum < 0) {
2220
l++
2321
} else if (sum > 0) {
@@ -37,12 +35,11 @@ var threeSum = function (nums) {
3735
r--
3836
}
3937
}
40-
4138
while (i < len - 1 && nums[i + 1] === nums[i]) {
4239
i++
4340
}
41+
i++
4442
}
45-
4643
return result
4744
}
4845

src/main/js/g0001_0100/s0020_valid_parentheses/solution.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
*/
99
var isValid = function (s) {
1010
const stack = []
11-
for (let i = 0; i < s.length; i++) {
12-
const c = s[i]
11+
for (let c of s) {
1312
if (c === '(' || c === '[' || c === '{') {
1413
stack.push(c)
1514
} else if (c === ')' && stack.length > 0 && stack[stack.length - 1] === '(') {
@@ -22,7 +21,6 @@ var isValid = function (s) {
2221
return false
2322
}
2423
}
25-
2624
return stack.length === 0
2725
}
2826

src/main/js/g0001_0100/s0023_merge_k_sorted_lists/solution.js

+8-18
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ const mergeTwoLists = function(left, right) {
3838
if (right === null) {
3939
return left
4040
}
41-
4241
let res;
4342
if (left.val <= right.val) {
4443
res = left
@@ -47,27 +46,18 @@ const mergeTwoLists = function(left, right) {
4746
res = right
4847
right = right.next
4948
}
50-
5149
let current = res;
52-
while (left !== null || right !== null) {
53-
if (left === null) {
54-
current.next = right
55-
right = right.next
56-
} else if (right === null) {
57-
current.next = left
58-
left = left.next
50+
while (left !== null && right !== null) {
51+
if (left.val <= right.val) {
52+
current.next = left;
53+
left = left.next;
5954
} else {
60-
if (left.val <= right.val) {
61-
current.next = left
62-
left = left.next
63-
} else {
64-
current.next = right
65-
right = right.next
66-
}
55+
current.next = right;
56+
right = right.next;
6757
}
68-
current = current.next
58+
current = current.next;
6959
}
70-
60+
current.next = left !== null ? left : right;
7161
return res
7262
};
7363

0 commit comments

Comments
 (0)