Problem 42296. String math
You will be given a string that describes a simple math equation. Your job is to determine if the value of the equation is equal to the number of letters in the string, not including spaces. Multiplication and division come before addition and subtraction when calculating the equation, just like in real life. For example:
'four plus eight' has thirteen non-space characters, but 4+8=12, so this would return false.
'eight plus six times two' has twenty non-space characters. 8+6*2=20, so this would return a true.
Only the numbers 0-9 will be included in this exercise. Operational terms are
- plus
- minus
- times
- multiplied by
- divided by
Good luck!
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers26
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
52486 Solvers
-
11890 Solvers
-
Determine if a Given Number is a Triangle Number
393 Solvers
-
Construct an index vector from two input vectors in vectorized fashion
444 Solvers
-
657 Solvers
More from this Author80
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!