'Find all pairs of integers $(a,b)$ such that $a² + ab - b = 2018$'
The way I have approached this is by considering each variables parity and then letting it be expressed as that parity with a different expression. For example, through casework, $a$ and $b$ must both be even integers so I let $a = 2m$ and $b = 2n$. I have continued this a little further, but I would like to know if there is a more elegant way of solving it rather than my brute force method.