Skip to content

Commit 4604d21

Browse files
yanglbmeactions-user
authored andcommitted
style: prettify code
1 parent f4d33b0 commit 4604d21

File tree

1 file changed

+2
-2
lines changed
  • lcof/面试题09. 用两个栈实现队列

1 file changed

+2
-2
lines changed

lcof/面试题09. 用两个栈实现队列/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ class CQueue {
7373
s1 = new ArrayDeque<>();
7474
s2 = new ArrayDeque<>();
7575
}
76-
76+
7777
public void appendTail(int value) {
7878
s1.push(value);
7979
if (s2.isEmpty()) {
8080
move();
8181
}
8282
}
83-
83+
8484
public int deleteHead() {
8585
if (s2.isEmpty()) {
8686
move();

0 commit comments

Comments
 (0)