Skip to content

Commit b19b24c

Browse files
authored
加注释
1 parent ea3b895 commit b19b24c

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
@@ -108,7 +108,7 @@ public:
108108
return 0; // 默认返回0,处理无效操作符
109109
}
110110

111-
111+
// 计算字符串表达式的值
112112
int calculate(string s) {
113113
int preority[250]; // 操作符优先级数组
114114
preority['+'] = 1;

0 commit comments

Comments
 (0)