We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2cae43 commit e69de82Copy full SHA for e69de82
main.py
@@ -174,3 +174,7 @@ def toFormula(subscriptionsAll):
174
result+='*'.join(subscription)+'+'
175
176
return result.rstrip('+')
177
+
178
+def evalAlgorithm(newFormula, formula, binary):
179
+ # We not need to use eval(), We can do this with an algorithm, It's not hard!
180
+ return eval(newFormula)
0 commit comments