Today I learned a fast way to divide by two or multiply by two - use the bitshift operators. (e.g. 1
Today I learned a fast way to divide by two or multiply by two - use the bitshift operators. (e.g. 10 » 1 = 5 and 10 « 1 = 20)
Today I learned a fast way to divide by two or multiply by two - use the bitshift operators. (e.g. 10 » 1 = 5 and 10 « 1 = 20)
Comments