##Use > and < instead of >= and <=
Use > and < instead of >= and <=
When checking against hard-coded integer values, use > and < instead of >= and <= where possible. For example, using
if(x>24&&x<51)
Is 2 bytes shorter than using
if(x>=25&&x<=50)