Skip to content

STGCodeChallengesOrg/Set-01-Challenge-04

Repository files navigation

Challenge04

STG Code Challenge for Week 4

Evaluate a mathematical expression. For example, if str were "2+(3-1)*3" the output should be 8. Another example: if str were "(2-0)(6/2)" the output should be 6. There can be parenthesis within the string so you must evaluate it properly according to the rules of arithmetic. The string will contain the operators: +, -, /, , (, and ). If you have a string like this: #/## or #+#(#)/#, then evaluate from left to right. So divide then multiply, and for the second one multiply, divide, then add. The evaluations will be such that there will not be any decimal operations, so you do not need to account for rounding and whatnot.

About

STG Code Challenge for Week 4

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published