Skip to content

Commit 655fcf4

Browse files
authored
修改注释
1 parent e33fa0b commit 655fcf4

File tree

1 file changed

+1
-1
lines changed
  • solution/0700-0799/0772.Basic Calculator III

1 file changed

+1
-1
lines changed

solution/0700-0799/0772.Basic Calculator III/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public:
121121
preority[')'] = 0;
122122

123123
stack<char> op; // 操作符栈
124-
stack<int> num; // 数字栈
124+
stack<int> num; // 操作数栈
125125
int stringsize = s.size(); // 字符串长度
126126
int i = 0;
127127
char ch;

0 commit comments

Comments
 (0)