File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
exercises/concept/rpn-calculator Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -106,8 +106,8 @@ pub enum CalculatorInput {
106
106
107
107
pub fn evaluate (inputs : & [CalculatorInput ]) -> Option <i32 > {
108
108
unimplemented! (
109
- " Given the inputs: {:?}, evaluate them as though they were a Reverse Polish notation expression" ,
110
- inputs ,
111
- );
109
+ " Given the inputs: {:?}, evaluate them as though they were a Reverse Polish notation expression" ,
110
+ inputs ,
111
+ );
112
112
}
113
113
```
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ pub enum CalculatorInput {
9
9
10
10
pub fn evaluate ( inputs : & [ CalculatorInput ] ) -> Option < i32 > {
11
11
unimplemented ! (
12
- "Given the inputs: {:?}, evaluate them as though they were a Reverse Polish notation expression" ,
13
- inputs,
14
- ) ;
12
+ "Given the inputs: {:?}, evaluate them as though they were a Reverse Polish notation expression" ,
13
+ inputs,
14
+ ) ;
15
15
}
You can’t perform that action at this time.
0 commit comments