Create a function that takes a string and returns true or false depending on whether or not the formula is correct.
formula("6 * 4 = 24") ➞ true
formula("18 / 17 = 2") ➞ false
formula("(1+2+3+4+5+6+7+8)/a=9") ➞ truea is.a (it's a constant and the same accross all tests).