Skip to content

Commit 34343a6

Browse files
committed
fix typo
1 parent 088519b commit 34343a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structure/stack_queue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func evalRPN(tokens []string) int {
100100
if len(stack)<2{
101101
return -1
102102
}
103-
// 注意:a为除数,b为被除数
103+
// 注意:a为被除数,b为除数
104104
b:=stack[len(stack)-1]
105105
a:=stack[len(stack)-2]
106106
stack=stack[:len(stack)-2]

0 commit comments

Comments
 (0)