Skip to content

Commit d34bb64

Browse files
committed
Update comments
1 parent a4585d2 commit d34bb64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

algorithms/valid-parentheses.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @return {boolean}
44
*/
55
var isValid = function (s) {
6-
// 2. 栈
6+
// 1. 栈
77
if (s.length % 2 !== 0) {
88
return false;
99
}
@@ -22,7 +22,7 @@ var isValid = function (s) {
2222
}
2323
return stack.length === 0;
2424

25-
// 1. 暴力解题
25+
// 2. 暴力解题
2626
// let len = s.length / 2;
2727

2828
// for (let i = 0; i < len; i++) {

0 commit comments

Comments
 (0)