Example: 2 * x^2 + 5*x - 3*x - x^2
Becomes x ^ 2 + 2 * x
We might need to rewrite the AST as it doesn't provide any useful information in this case.
It would be nice if we could simplify equations.
Example:
`2 * x^2 + 5*x - 3*x - x^2`
Becomes
`x ^ 2 + 2 * x`
We might need to rewrite the AST as it doesn't provide any useful information in this case.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
It would be nice if we could simplify equations.
Example:
2 * x^2 + 5*x - 3*x - x^2Becomes
x ^ 2 + 2 * xWe might need to rewrite the AST as it doesn't provide any useful information in this case.