![]() |
VOOZH | about |
Given an equation of the form:
a + b = c
Out of which any one of the terms , or is missing. The task is to find the missing term.
Examples:
Input: 2 + 6 = ? Output: 8 Input: ? + 3 =6 Output: 3
Approach:
Missing numbers can be found simply using the equation . First, we will find two known numbers from the given equation(read as a string in the program) and convert them into integers, and put into the equation. In this way, we can find the third missing number. We can implement it by storing the equation into the string.
Below is the step by step algorithm:
arr[0] = "a" arr[1] = "+" arr[2] = "b" arr[3] = "=" arr[4] = "c"
Below is the implementation of the above approach:
4
Complexity Analysis: