Skip to content

Commit 8dca787

Browse files
authored
Update README.md
1 parent af17da5 commit 8dca787

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

cpp/Validate-Stack-Sequences/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ push(5), pop() -> 5, pop() -> 3, pop() -> 2, pop() -> 1
3838
# 代码
3939

4040
## [C++](./Validate-Stack-Sequences.cpp):
41-
## [Python](https://github.com/bryceustc/LeetCode_Note/blob/master/python/Validate-Stack-Sequences/Validate-Stack-Sequences.py)
42-
4341
### 模拟法
4442
```c++
4543
class Solution {
@@ -64,7 +62,7 @@ public:
6462
};
6563
```
6664
67-
## [Python:](https://github.com/bryceustc/LeetCode_Note/blob/master/python/Hand-Of-Straights/Hand-Of-Straights.py)
65+
## [Python:](https://github.com/bryceustc/LeetCode_Note/blob/master/python/Validate-Stack-Sequences/Validate-Stack-Sequences.py)
6866
### 模拟法
6967
```python
7068
class Solution:

0 commit comments

Comments
 (0)