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
Good luck!
Extract leading non-zero digit
967 Solvers
Find common elements in matrix rows
810 Solvers
1515 Solvers
135 Solvers
Flag largest magnitude swings as they occur
524 Solvers
Solution 667096
leave "by" strings alone,nice touch!