Search results for "dfb3716231df47aa2ba71dbd8ad16dd9" in md5 (2)

/v/ - Thread 713813370
Anonymous No.713837913
>>713837341
You don't even need the method since it's a one-line operation. Nor do you need the modulo to find out if a value is even, since an odd value will always have a 1 as its least-significant bit. So just do a bitwise-and and compare to 1:
>if ( (var & 1) == 1 ) { // odd } else { // even }
/v/ - Thread 712729491
Anonymous No.712759076
>>712758627