File tree 3 files changed +12
-27
lines changed
s0023_merge_k_sorted_lists
3 files changed +12
-27
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,12 @@ var threeSum = function (nums) {
10
10
nums . sort ( ( a , b ) => a - b )
11
11
const len = nums . length
12
12
const result = [ ]
13
-
14
- for ( let i = 0 ; i < len - 2 ; i ++ ) {
13
+ let i = 0 ;
14
+ while ( i < len - 2 ) {
15
15
let l = i + 1
16
16
let r = len - 1
17
-
18
17
while ( r > l ) {
19
18
const sum = nums [ i ] + nums [ l ] + nums [ r ]
20
-
21
19
if ( sum < 0 ) {
22
20
l ++
23
21
} else if ( sum > 0 ) {
@@ -37,12 +35,11 @@ var threeSum = function (nums) {
37
35
r --
38
36
}
39
37
}
40
-
41
38
while ( i < len - 1 && nums [ i + 1 ] === nums [ i ] ) {
42
39
i ++
43
40
}
41
+ i ++
44
42
}
45
-
46
43
return result
47
44
}
48
45
Original file line number Diff line number Diff line change 8
8
*/
9
9
var isValid = function ( s ) {
10
10
const stack = [ ]
11
- for ( let i = 0 ; i < s . length ; i ++ ) {
12
- const c = s [ i ]
11
+ for ( let c of s ) {
13
12
if ( c === '(' || c === '[' || c === '{' ) {
14
13
stack . push ( c )
15
14
} else if ( c === ')' && stack . length > 0 && stack [ stack . length - 1 ] === '(' ) {
@@ -22,7 +21,6 @@ var isValid = function (s) {
22
21
return false
23
22
}
24
23
}
25
-
26
24
return stack . length === 0
27
25
}
28
26
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ const mergeTwoLists = function(left, right) {
38
38
if ( right === null ) {
39
39
return left
40
40
}
41
-
42
41
let res ;
43
42
if ( left . val <= right . val ) {
44
43
res = left
@@ -47,27 +46,18 @@ const mergeTwoLists = function(left, right) {
47
46
res = right
48
47
right = right . next
49
48
}
50
-
51
49
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 ;
59
54
} 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 ;
67
57
}
68
- current = current . next
58
+ current = current . next ;
69
59
}
70
-
60
+ current . next = left !== null ? left : right ;
71
61
return res
72
62
} ;
73
63
You can’t perform that action at this time.
0 commit comments