Skip to content
Advertisement

Is the number the power of 2 – without using log10 ? PHP

I’m new to PHP I was taking coding challenge and I stumbled on this piece of code :

JavaScript

The solution

JavaScript

In the if section, what is happening there ?

let’s say $n = 2

JavaScript

EDIT :

So basicly

& isn’t a logical operator

It is a bitwise Operator

Bitwise operators allow evaluation and manipulation of specific bits within an integer.

You can check this video that I found very helpful it will show you how bit’s work and how you can work with bitwise

https://www.youtube.com/watch?v=2U-bh4gSn1k

And thanks to : kollol

now I get why the solution code return only the power of two values

Also thanks to : lars-stegelitz kiko-software

Advertisement

Answer

if both digits are same vertically then the value will be 1, 0 otherwise for example

JavaScript

now suppose

JavaScript

logic is all the numbers which are power of two will always get a 0 in bitwise and operation with 2. Rest will not .

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement