Eb1B 马上提交,求专家评估把关# Immigration - 落地生根
a*e
1 楼
Write a function that calculates input strings with operators +,-,*,/ eg. "5
+5*6" should output 35"。
这题好像不是leetcode上的。有什么好一点的思路吗?
我自己想到的就是首先找到* 或者/,然后计算这部分的结果,再把之前的加减运算完
成。这样scan完整个string
+5*6" should output 35"。
这题好像不是leetcode上的。有什么好一点的思路吗?
我自己想到的就是首先找到* 或者/,然后计算这部分的结果,再把之前的加减运算完
成。这样scan完整个string