📄 A set of functions written in Java to handle numeric expressions and mathematical needs.
🛠️ The repository contains:
➡ resolveExpression: calculates the result of a given complex expression.
➡ decimalToBinary: converts a given number into a binary number (also decimal).
👨🏻💻 Functions Headers:
➡ String resolveExpression(String value): gets a string expression (value parameter) and return a string result.
➡ String decimalToBinary(String value): gets a string value in decimal (value parameter) and return a string result in binary.