Skip to content

Commit 98245ca

Browse files
refactor 227
1 parent fd081e6 commit 98245ca

File tree

1 file changed

+0
-15
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-15
lines changed

src/main/java/com/fishercoder/solutions/_227.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,6 @@
33
import java.util.ArrayDeque;
44
import java.util.Deque;
55

6-
/**
7-
* 227. Basic Calculator II
8-
*
9-
* Implement a basic calculator to evaluate a simple expression string.
10-
11-
The expression string contains only non-negative integers, +, -, *, / operators and empty spaces . The integer division should truncate toward zero.
12-
13-
You may assume that the given expression is always valid.
14-
15-
Some examples:
16-
"3+2*2" = 7
17-
" 3/2 " = 1
18-
" 3+5 / 2 " = 5
19-
Note: Do not use the eval built-in library function.
20-
*/
216
public class _227 {
227

238
public static class Solution1 {

0 commit comments

Comments
 (0)