Skip to content

Commit

Permalink
Merge pull request youngyangyang04#2089 from Lozakaka/patch-12
Browse files Browse the repository at this point in the history
新增 ```Java 以正常顯示保留字顏色
  • Loading branch information
youngyangyang04 authored Jun 2, 2023
2 parents 80cb527 + 1ed8111 commit 4ab224b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion problems/0225.用队列实现栈.md
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ class MyStack {

```
优化,使用一个 Queue 实现,但用卡哥的逻辑实现
```
```Java
class MyStack {
Queue<Integer> queue;

Expand Down

0 comments on commit 4ab224b

Please sign in to comment.